aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
diff options
context:
space:
mode:
authorobiot <obiot@f5534014-38df-0310-8fa8-9805f1628bb7>2004-04-14 18:42:19 +0000
committerobiot <obiot@f5534014-38df-0310-8fa8-9805f1628bb7>2004-04-14 18:42:19 +0000
commitd9a0533514bd93a2906effeffee43bd1f7202341 (patch)
tree31673e9d7c268849593fecac0a5b0f414793bb00 /wiretap
parentedbc426cddbf6e20300fb5253cde464aa42af66f (diff)
At last compiling on CygWin works again! Added the missing PCRE and GLIB
libraries to libftypes. Provide caching of computed configure tests. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10600 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wiretap')
-rw-r--r--wiretap/configure.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/wiretap/configure.in b/wiretap/configure.in
index 715af8f6d3..12bda13a2b 100644
--- a/wiretap/configure.in
+++ b/wiretap/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.56 2004/03/04 06:30:14 guy Exp $
+# $Id: configure.in,v 1.57 2004/04/14 18:42:19 obiot Exp $
#
AC_INIT(wtap.c)
@@ -92,6 +92,14 @@ else
CFLAGS="-no-cpp-precomp $CFLAGS"
AC_MSG_RESULT(Apple GCC - added -no-cpp-precomp)
;;
+ cygwin*)
+ #
+ # Shared libraries in cygwin/Win32 must never contain
+ # undefined symbols.
+ #
+ LDFLAGS="$LDFLAGS -no-undefined"
+ AC_MSG_RESULT(CygWin GCC - added -no-undefined to LDFLAGS)
+ ;;
*)
AC_MSG_RESULT(none needed)
;;