aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/configure.in
diff options
context:
space:
mode:
authorOlivier Biot <obiot.ethereal@gmail.com>2004-04-14 18:42:19 +0000
committerOlivier Biot <obiot.ethereal@gmail.com>2004-04-14 18:42:19 +0000
commitaf4a73a52329318d6a120eab009eb8fdb0dc5949 (patch)
tree31673e9d7c268849593fecac0a5b0f414793bb00 /wiretap/configure.in
parent27ca219d2b84ce668590826d8415985bd45b8e05 (diff)
At last compiling on CygWin works again! Added the missing PCRE and GLIB
libraries to libftypes. Provide caching of computed configure tests. svn path=/trunk/; revision=10600
Diffstat (limited to 'wiretap/configure.in')
-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)
;;