Ethereal-dev: Re: [ethereal-dev] --with-libpcap option to configure, or --with-include fixed

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Gilbert Ramirez <gram@xxxxxxxxxx>
Date: Tue, 3 Aug 1999 16:06:11 -0500
On Fri, Jul 30, 1999 at 08:51:33AM -0500, Richard Sharpe wrote:
> 
> 
> Hi,
> 
> we need to either fix --with-include or add a --with-libpcap option to
> ethereal.

'configure' automatically supports the setting of the CPPFLAGS
environment variable to add to the CPPFLAGS used when building.

You can either:

export CPPFLAGS="-I /non/standard/location"
./configure


or

CPPFLAGS="-I /non/standard/location" ./configure

It's in the INSTALL.configure doco already.

I forgot about this until now. My solaris machine is set up with
my local headers in /local/include, so my bash profile sets up the
CPPFLAGS variable for me. 'configure' picks it up automatically.

--gilbert