diff options
| author | Gavin Andresen <[email protected]> | 2013-04-17 14:21:34 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-04-17 14:21:34 -0700 |
| commit | 8b1d72be3225648a7e2a1067eed528690ed047f4 (patch) | |
| tree | 4dce194bec45a6d00bd94da3f5ebca2335e678aa /src | |
| parent | Merge pull request #2537 from jonasschnelli/toolbaricon_linux (diff) | |
| parent | Add comments to UNIX Makefile regarding USE_UPNP (diff) | |
| download | discoin-8b1d72be3225648a7e2a1067eed528690ed047f4.tar.xz discoin-8b1d72be3225648a7e2a1067eed528690ed047f4.zip | |
Merge pull request #2536 from jcalvinowens/makefile-clarifying-comments
Add comments to UNIX Makefile regarding USE_UPNP
Diffstat (limited to 'src')
| -rw-r--r-- | src/makefile.unix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/makefile.unix b/src/makefile.unix index 081edaf63..811023564 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -2,7 +2,13 @@ # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. +# :=0 --> UPnP support turned off by default at runtime +# :=1 --> UPnP support turned on by default at runtime +# :=- --> No UPnP support - miniupnp not required USE_UPNP:=0 + +# :=1 --> Enable IPv6 support +# :=0 --> Disable IPv6 support USE_IPV6:=1 LINK:=$(CXX) |