summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2011-07-28 15:56:49 (GMT)
committerdgp <dgp@users.sourceforge.net>2011-07-28 15:56:49 (GMT)
commitb5d586efcb0a9467938f183610fa4e82eeea988e (patch)
tree3b17b71a49c16328c0f24e362c4532314a951cbc
parent0a93f13956b0be69b3afb46041e72da3b6e29366 (diff)
parentd9f455ab2c498da430f6831eae0793db2af05333 (diff)
downloadtcl-b5d586efcb0a9467938f183610fa4e82eeea988e.zip
tcl-b5d586efcb0a9467938f183610fa4e82eeea988e.tar.gz
tcl-b5d586efcb0a9467938f183610fa4e82eeea988e.tar.bz2
merge to rc
-rw-r--r--ChangeLog6
-rwxr-xr-xunix/configure3
-rw-r--r--unix/tcl.m43
3 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8e6c4e0..7129877 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-07-28 Reinhard Max <max@suse.de>
+
+ * unix/tcl.m4 (SC_TCL_IPV6): Fix AC_DEFINE invocation for
+ NEED_FAKE_RFC2553.
+ * unix/configure: autoconf-2.59
+
2011-07-28 Don Porter <dgp@users.sourceforge.net>
* changes: Updates for 8.6b2 release.
diff --git a/unix/configure b/unix/configure
index ab251a6..72d704d 100755
--- a/unix/configure
+++ b/unix/configure
@@ -11381,7 +11381,8 @@ else
fi
if test "x$NEED_FAKE_RFC2553" = "x1"; then
- cat >>confdefs.h <<\_ACEOF
+
+cat >>confdefs.h <<\_ACEOF
#define NEED_FAKE_RFC2553 1
_ACEOF
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