]> granicus.if.org Git - postgresql/commitdiff
Enable IPV6 for all MSVC builds, including the VC6 libpq-only build.
authorMagnus Hagander <magnus@hagander.net>
Mon, 16 Apr 2007 18:39:19 +0000 (18:39 +0000)
committerMagnus Hagander <magnus@hagander.net>
Mon, 16 Apr 2007 18:39:19 +0000 (18:39 +0000)
Per request from Hiroshi Saito.

src/include/pg_config.h.win32
src/tools/msvc/Solution.pm

index a8f489d91d07e3591255b7fcaa7b35253f15cf90..4e06ebac0c70fbd3290d2c135df5f86cd7fba70a 100644 (file)
@@ -8,7 +8,6 @@
  * HAVE_GETOPT_H, HAVE_GETOPT_LONG, HAVE_RINT, HAVE_STRINGS_H, 
  * HAVE_STRTOLL, HAVE_STRTOULL, HAVE_STRUCT_OPTION, ENABLE_THREAD_SAFETY
  *
- * For now, also HAVE_IPV6
  */
 
 /* Define to the type of arg 1 of 'accept' */
 #define HAVE_INT_TIMEZONE 
 
 /* Define to 1 if you have support for IPv6. */
-//#define HAVE_IPV6 1
+#define HAVE_IPV6 1
 
 /* Define to 1 if you have isinf(). */
 #define HAVE_ISINF 1
index b552201a65b450e9b70ebb7f9cc2a4f6e0697546..12a2bf0ef19338874b62226e442bb0ca9a21009a 100644 (file)
@@ -3,7 +3,7 @@ package Solution;
 #
 # Package that encapsulates a Visual C++ solution file generation
 #
-# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.21 2007/04/12 07:03:00 mha Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.22 2007/04/16 18:39:19 mha Exp $
 #
 use Carp;
 use strict;
@@ -112,7 +112,6 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
         print O "#define HAVE_LIBZ 1\n" if ($self->{options}->{zlib});
         print O "#define USE_SSL 1\n" if ($self->{options}->{openssl});
         print O "#define ENABLE_NLS 1\n" if ($self->{options}->{nls});
-        print O "#define HAVE_IPV6 1\n";
 
         if ($self->{options}->{xml})
         {