From b4d7c22a73214a828995b5ec5a1b3030a64d63a7 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sat, 9 Dec 2017 13:01:37 +0100 Subject: [PATCH] configure: invert --disable-upnp false logic to --enable-upnp true Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/01414d79b017b5583002365c12dedb024d7a2433 Author: vanhofen Date: 2017-12-09 (Sat, 09 Dec 2017) Origin message was: ------------------ - configure: invert --disable-upnp false logic to --enable-upnp true ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 34f7d89a3..230751031 100644 --- a/configure.ac +++ b/configure.ac @@ -185,8 +185,9 @@ AC_ARG_ENABLE(flac, AM_CONDITIONAL(ENABLE_FLAC, test "$enable_flac" = "yes") AC_ARG_ENABLE(upnp, - AS_HELP_STRING([--disable-upnp], [disable UPNP support @<:@default=no@:>@]), - ,[enable_upnp=yes]) + AS_HELP_STRING([--enable-upnp], [enable UPNP support @<:@default=yes@:>@]), + [enable_upnp="$enableval"], + [enable_upnp="yes"]) AM_CONDITIONAL(ENABLE_UPNP, test "$enable_upnp" = "yes") if test "$enable_upnp" = "yes"; then