diff options
| author | Pieter Wuille <[email protected]> | 2012-03-31 17:58:25 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-05-11 15:29:19 +0200 |
| commit | 23aa78c405f82257e8578afb3d5d244aa27dcd74 (patch) | |
| tree | 27e99a7b7ef6c3f9d178e394b8ef630bbef852f3 /src/makefile.linux-mingw | |
| parent | Merge pull request #1247 from Diapolo/Win_open_debug_logfile (diff) | |
| download | discoin-23aa78c405f82257e8578afb3d5d244aa27dcd74.tar.xz discoin-23aa78c405f82257e8578afb3d5d244aa27dcd74.zip | |
IPv6 node support
This will make bitcoin relay valid routable IPv6 addresses, and when
USE_IPV6 is enabled, listen on IPv6 interfaces and attempt connections
to IPv6 addresses.
Diffstat (limited to 'src/makefile.linux-mingw')
| -rw-r--r-- | src/makefile.linux-mingw | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw index 645f0a16e..373b49ab0 100644 --- a/src/makefile.linux-mingw +++ b/src/makefile.linux-mingw @@ -27,7 +27,7 @@ LIBS= \ -l ssl \ -l crypto -DEFS=-D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB +DEFS=-D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DUSE_IPV6 DEBUGFLAGS=-g CFLAGS=-O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) |