diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-09-27 04:55:05 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-09-27 04:55:05 +0000 |
commit | 83ec54675c19f25cfbb2e8a8863c6ee2191d8b0c (patch) | |
tree | 35d39e43d20aca160b96d8a85ddc2b80e4646f67 /configure.in | |
parent | f881e13932e0ba390c26cce15d1334b2154a8062 (diff) | |
download | wireshark-83ec54675c19f25cfbb2e8a8863c6ee2191d8b0c.tar.gz wireshark-83ec54675c19f25cfbb2e8a8863c6ee2191d8b0c.tar.bz2 wireshark-83ec54675c19f25cfbb2e8a8863c6ee2191d8b0c.zip |
First step in moving core Ethereal routines to libepan.
svn path=/trunk/; revision=2458
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 423343487d..6db797125b 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.102 2000/09/17 03:20:05 guy Exp $ +# $Id: configure.in,v 1.103 2000/09/27 04:54:24 gram Exp $ dnl dnl Process this file with autoconf 2.13 or later to produce a dnl configure script; 2.12 doesn't generate a "configure" script that @@ -126,8 +126,8 @@ fi # as various packages we use ("libpcap", "zlib", an SNMP library) # may have been installed under "/usr/local/include". # -CFLAGS="$CFLAGS -I\$(top_srcdir) -I\$(top_srcdir)/wiretap -I/usr/local/include" -CPPFLAGS="$CPPFLAGS -I\$(top_srcdir) -I\$(top_srcdir)/wiretap -I/usr/local/include" +CFLAGS="$CFLAGS -I\$(top_srcdir) -I\$(top_srcdir)/wiretap -I\$(top_srcdir)/epan -I/usr/local/include" +CPPFLAGS="$CPPFLAGS -I\$(top_srcdir) -I\$(top_srcdir)/wiretap -I\$(top_srcdir)/epan -I/usr/local/include" # # Arrange that we search for libraries in "/usr/local/lib". @@ -447,6 +447,7 @@ AC_CONFIG_SUBDIRS(wiretap) AC_OUTPUT( Makefile doc/Makefile + epan/Makefile gtk/Makefile packaging/Makefile packaging/rpm/Makefile |