diff options
author | max <max@tclers.tk> | 2011-07-28 15:51:40 (GMT) |
---|---|---|
committer | max <max@tclers.tk> | 2011-07-28 15:51:40 (GMT) |
commit | 81e8e3f1134a59fb0ebd8ffccc332db1bd516ca0 (patch) | |
tree | 9ca89d47ff104c6c6d701ef65c14c58899f1f863 /unix/tcl.m4 | |
parent | 3cf69634cd132eaf3cf6e685dcddeb34caf142a1 (diff) | |
download | tcl-81e8e3f1134a59fb0ebd8ffccc332db1bd516ca0.zip tcl-81e8e3f1134a59fb0ebd8ffccc332db1bd516ca0.tar.gz tcl-81e8e3f1134a59fb0ebd8ffccc332db1bd516ca0.tar.bz2 |
Fix AC_DEFINE invocation for NEED_FAKE_RFC2553.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
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 |