aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2007-06-11 18:26:09 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2007-06-11 18:26:09 +0000
commitaca3bdda2faf7dcd0c0330f42074598b9fd7cbd2 (patch)
treeb753a8a627171614f46ecf5b8cba48cd34d5ceea /Makefile.common
parent80ab0b1f588c39f43b1264c30d11ab84233bca1b (diff)
Fix compilation under VS6 (hopefully without breaking compilation
anywhere else). Instead of using getaddrinfo() and getnameinfo(), promote inet_pton.c and inet_ntop.c to the top level and use those routines instead. (It's 2007, for crying out loud. Why is this even an issue?) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22075 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common
index 5358531d08..1ff0d2e0f9 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -123,6 +123,8 @@ TSHARK_TAP_SRC = \
# helpers already available on some platforms (and on others not)
EXTRA_wireshark_SOURCES = \
getopt.c \
+ inet_ntop.c \
+ inet_pton.c \
mkstemp.c \
strerror.c \
strcasecmp.c \
@@ -132,6 +134,7 @@ EXTRA_wireshark_SOURCES = \
# corresponding headers
EXTRA_wireshark_INCLUDES = \
getopt.h \
+ inet_v6defs.h \
mkstemp.h \
strerror.h \
strptime.h