aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-02-15 19:20:36 +0000
committerGuy Harris <guy@alum.mit.edu>2006-02-15 19:20:36 +0000
commit3442ed9e325921c56935c08254f428673650a509 (patch)
tree1c1d556e61c5e36588a51342d5469102336e3aa1 /Makefile.common
parent1ee7aa4476b30e99bd137394907a968bf5669479 (diff)
Check for getopt in the configure script, as we do for other routines
not available on all platforms. Include getopt.c in EXTRA_ethereal_SOURCES and include getopt.h in EXTRA_ethereal_INCLUDES, as we do with the other files that supply routines not available on all platforms, rather than always including them in the source for dumpcap. svn path=/trunk/; revision=17311
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.common b/Makefile.common
index de033c0bd5..1af16d7413 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -116,19 +116,21 @@ TETHEREAL_TAP_SRC = \
# helpers already available on some platforms (and on others not)
EXTRA_ethereal_SOURCES = \
+ getopt.c \
+ mkstemp.c \
snprintf.c \
strerror.c \
strcasecmp.c \
strncasecmp.c \
- mkstemp.c \
strptime.c
# corresponding headers
EXTRA_ethereal_INCLUDES = \
+ getopt.h \
+ mkstemp.h \
snprintf.h \
snprintf-imp.h \
strerror.h \
- mkstemp.h \
strptime.h
# ethereal specifics
@@ -218,7 +220,6 @@ dumpcap_SOURCES = \
clopts_common.c \
conditions.c \
dumpcap.c \
- getopt.c \
ringbuffer.c \
tempfile.c \
version_info.c
@@ -229,4 +230,3 @@ noinst_HEADERS = \
$(ETHEREAL_COMMON_INCLUDES) \
$(ethereal_INCLUDES) \
$(EXTRA_ethereal_INCLUDES)
-