summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--unix/tcl.m43
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b205b74..99f6408 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-28 Reinhard Max <max@suse.de>
+
+ * unix/tcl.m4 (SC_TCL_IPV6): Fix AC_DEFINE invocation for
+ NEED_FAKE_RFC2553.
+
2011-07-28 Don Porter <dgp@users.sourceforge.net>
* changes: Updates for 8.6b2 release.
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 229e0b8..2f7cb16 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -3261,7 +3261,8 @@ AC_DEFUN([SC_TCL_IPV6],[
#include <netdb.h>
]])
if test "x$NEED_FAKE_RFC2553" = "x1"; then
- AC_DEFINE(NEED_FAKE_RFC2553)
+ AC_DEFINE([NEED_FAKE_RFC2553], 1,
+ [Use compat implementation of getaddrinfo() and friends])
AC_LIBOBJ([fake-rfc2553])
AC_CHECK_FUNC(strlcpy)
fi