diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-10-14 06:55:11 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-10-14 06:55:11 +0000 |
commit | ae276ffe2010027af678da5453339affcdde66be (patch) | |
tree | 09b20a56b5d5081b22bafd4a31a690a2a3bd22ec /acconfig.h | |
parent | 831497b33e358305b8f409882ec61097335b772d (diff) | |
download | wireshark-ae276ffe2010027af678da5453339affcdde66be.tar.gz wireshark-ae276ffe2010027af678da5453339affcdde66be.tar.bz2 wireshark-ae276ffe2010027af678da5453339affcdde66be.zip |
Make it build on systems lacking "inet_pton()", "inet_ntop()", and a
definition of "AF_INET6". Declare those functions and, if it's not
defined, define "AF_INET6" in "inet_v6defs.h", and arrange to include
it if "inet_ntop()" is missing. (Systems will probably have both of
them or lack both of them, and we may choose not to use the system's
"inet_pton()" because it's buggy, so base the decision on whether to
include "inet_v6defs.h" on whether we're using the system's
"inet_ntop()" or not.) Fix some macro references in "Makefile.am" and
"configure.in".
svn path=/trunk/; revision=830
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/acconfig.h b/acconfig.h index b28b7f024c..ad6c942f83 100644 --- a/acconfig.h +++ b/acconfig.h @@ -1,7 +1,7 @@ /* acconfig.h * #ifdefs to be controlled by "configure" * - * $Id: acconfig.h,v 1.11 1999/10/06 03:37:52 guy Exp $ + * $Id: acconfig.h,v 1.12 1999/10/14 06:55:11 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -31,6 +31,8 @@ #undef DATAFILE_DIR +#undef NEED_INET_V6DEFS_H + #undef NEED_SNPRINTF_H #undef NEED_STRERROR_H |