diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2012-06-08 16:36:40 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2012-08-23 21:00:57 +0000 |
commit | 45beb88966ff0f54606593f9cf43a5883e8acf49 (patch) | |
tree | a53084c3e30e4051715e8dbf81abc628de6cc5fe /src/makefile.linux-mingw | |
parent | e422bebbdc63966df984a8e5cd12d8f4c84da1b8 (diff) |
Bugfix: Make USE_UPNP=- work with makefile.{linux-mingw,mingw,osx} too
Diffstat (limited to 'src/makefile.linux-mingw')
-rw-r--r-- | src/makefile.linux-mingw | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 174d0eee1b..059504b80f 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -35,7 +35,10 @@ CFLAGS=-O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter $(D TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data) -ifdef USE_UPNP +ifndef USE_UPNP + override USE_UPNP = - +endif +ifneq (${USE_UPNP}, -) LIBPATHS += -L"$(DEPSDIR)/miniupnpc" LIBS += -l miniupnpc -l iphlpapi DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP) |