aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/configure.in
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1998-11-13 03:21:20 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1998-11-13 03:21:20 +0000
commit7b91cc82151285a0312c501318b8e4dc883406fc (patch)
treeaa7e8a57fd94aa4a84912e08f63fe4aaca2e4f56 /wiretap/configure.in
parent1f2a75cd8fade15bf66b0c463d2e4c2651630ee9 (diff)
More patches from Guy to make wiretap compile better. I definitely
need to learn more about autoconf/automake. :) svn path=/trunk/; revision=87
Diffstat (limited to 'wiretap/configure.in')
-rw-r--r--wiretap/configure.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/wiretap/configure.in b/wiretap/configure.in
index 6c2f0bbe76..cb2f94757f 100644
--- a/wiretap/configure.in
+++ b/wiretap/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.2 1998/11/12 21:39:22 gram Exp $
+# $Id: configure.in,v 1.3 1998/11/13 03:21:20 gram Exp $
dnl Process this file with autoconf to produce a configure script.
AC_INIT(wtap.c)
AM_INIT_AUTOMAKE(libwtap.a, 0.0.0)
@@ -8,6 +8,10 @@ dnl Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB
+# GTK checks (copied from ethereal)
+AM_PATH_GTK(1.0.0, CFLAGS="$CFLAGS $GTK_CFLAGS" LIBS="$LIBS $GTK_LIBS",
+ AC_MSG_ERROR(GTK+ distribution not found.))
+
# Pcap checks (copied from ethereal)
AC_CHECK_HEADER(pcap.h,, AC_MSG_ERROR(Header file pcap.h not found.))