aboutsummaryrefslogtreecommitdiffstats
path: root/epan/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2004-02-23Bump the version to 0.10.2Gerald Combs1-2/+2
svn path=/trunk/; revision=10205
2004-02-19Bump the version to 0.10.1.Gerald Combs1-2/+2
svn path=/trunk/; revision=10100
2004-02-08Move -pedandic & co back into extra-flags (prepare for dissectors moving to ↵Jörg Mayer1-3/+3
epan/) svn path=/trunk/; revision=10007
2004-02-07Don't build as shared *and* static by defaultJörg Mayer1-1/+3
svn path=/trunk/; revision=10004
2004-02-01packet-dcerpc-afs4int.cJörg Mayer1-3/+3
svn path=/trunk/; revision=9938
2004-01-10Add -Wbad-function-cast to extra gcc flags.Olivier Biot1-2/+2
svn path=/trunk/; revision=9639
2003-12-24Add -pedantic to --with-extra-gcc-checksJörg Mayer1-2/+2
svn path=/trunk/; revision=9443
2003-12-13Add the help directory to the build. Bump the release version to 0.10.0aGerald Combs1-2/+2
svn path=/trunk/; revision=9276
2003-12-11Add "/usr/local/include" in case the PCRE header file is there.Guy Harris1-1/+23
svn path=/trunk/; revision=9242
2003-12-10Bump the version to 0.10.0. It could be (and has been) argued that theGerald Combs1-2/+2
last release should have been 0.10.0. svn path=/trunk/; revision=9235
2003-12-06From Olivier BiotGilbert Ramirez1-1/+35
New "matches" operater in display filter language. Uses PCRE. If a "matches" operator is found in a dfilter while libpcre has not been used to build the binary, then an exception is thrown after using dfilter_fail() to set an apporporiate error message. svn path=/trunk/; revision=9182
2003-11-18From Olivier Biot: add a "--enable-profile-build" flag to request thatGuy Harris1-1/+17
"-pg" binaries be built. svn path=/trunk/; revision=9001
2003-11-02Bump the version number to 0.9.16.Gerald Combs1-2/+2
svn path=/trunk/; revision=8861
2003-09-08Bump the version to 0.9.15. Update the NEWS and ChangeLog to August 27. MoreGerald Combs1-2/+2
updates to come. svn path=/trunk/; revision=8410
2003-08-21Fix up --with messages that include square brackets.Guy Harris1-2/+4
Put --with-plugins on the left margin, as the rest of the messages are. svn path=/trunk/; revision=8202
2003-07-23Prep for the 0.9.14 releaseGerald Combs1-2/+2
svn path=/trunk/; revision=8068
2003-06-10Bump the version to 0.9.13 and otherwise prep for the next release. ETA isGerald Combs1-2/+2
Wednesday. svn path=/trunk/; revision=7820
2003-05-04Add support for asynchronous DNS updates using the GNU ADNS library.Gerald Combs1-1/+10
Support can be enabled at configure time by using "--with-adns=DIR". If support is enabled, async queries happen whenever host name resolution is enabled. Do we need a separate preference for async queries? Currently, only IPv4 reverse queries are supported. I can add IPv4 forward lookup support, but I don't have any way to test IPv6 queries. svn path=/trunk/; revision=7640
2003-05-01Bump the version number to 0.9.12. Make NEWS and ChangeLog current.Gerald Combs1-2/+2
The next release will likely be tomorrow (May 1). svn path=/trunk/; revision=7622
2003-03-25Use "datafiledir" rather than "DATAFILE_DIR" as the name of the variableGuy Harris1-6/+5
in the configure script for the all-variables-expanded version of the data file directory. Don't AC_SUBST "DATAFILE_DIR", as it's not used. Define DATAFILE_DIR in config.h as the all-variables-expanded version of $datadir/ethereal, as that's where the global configuration files such as manuf and the Diameter files are actually installed. svn path=/trunk/; revision=7368
2003-03-11Bump the version to 0.9.11. Let's hope the goat's blood and hastily carvedGerald Combs1-2/+2
idol is enough for the CVS gods. svn path=/trunk/; revision=7337
2003-03-04Bump the version to 0.9.10.Gerald Combs1-2/+2
svn path=/trunk/; revision=7271
2003-02-28Fixes for a couple of problems, from Albert Chin:Guy Harris1-7/+28
1. On Solaris, inet_ntop and inet_pton need to be linked against -lnsl. AC_CHECK_FUNC() isn't good enough unless LIBS already has -lnsl. 2. On IRIX, the blanket redefinition of the inet_ntop function prototype is incorrect (compiling with MIPSpro 7.4): cc-1143 cc: ERROR File = inet_v6defs.h, Line = 32 Declaration is incompatible with "const char *inet_ntop(int, const void *, char *, socklen_t)" (declared at line 89 of "/usr/include/arpa/inet.h"). extern const char *inet_ntop(int af, const void *src, char *dst, ^ 1 error detected in the compilation of "inet_pton.c". gmake[4]: *** [inet_pton.o] Error 2 On IRIX, the correct prototype is: extern const char *inet_ntop(int, const void *, char *, socklen_t); Rather than blindly replacing the prototype we detect if a prototype exists and define it only if one does not exist. svn path=/trunk/; revision=7218
2003-02-26From Pavel Roskin:Guy Harris1-6/+8
Get rid of acconfig.h, as it's an archaism; put descriptions into AC_DEFINE instead. That squelches some warnings from later versions of autoconf. Fix an unquoted call to AC_MSG_ERROR. Move the stuff to define HAVE_SOME_SNMP into configure.in. svn path=/trunk/; revision=7203
2003-01-30AC_ARG_ENABLE takes 4 argument: The 3rd specifies what to do in case aJörg Mayer1-3/+3
configure option is given on the command line. The value of the arguement is passwd in the enableval variable. The 4th argument tells what to do in case no command line argument was given. This causes --disable-gtk2 (which is the default) to behave differently from the case when no option is given. I do not really understand where the difference in the behaviour of the generated codes comes from, but I definitely see a difference. Fixed all occurrences where the 3rd arguement was empty. svn path=/trunk/; revision=7044
2003-01-21Bump the version to 0.9.9. Update the NEWS and ChangeLog files.Gerald Combs1-2/+2
I'm shooting for a release on Wednesday evening. svn path=/trunk/; revision=6952
2003-01-09Use "plugindir", not "PLUGIN_DIR", as the variable name in the configureGuy Harris1-2/+2
script for the plugin directory; in most Makefile.am files it's set with plugindir = @plugindir@ (along the lines of what's done with other variables with pathnames - the variable name is all lower case), so the variable needs to be named "plugindir". Fix the DOCSIS plugins' Makefile.am to use "plugindir". Don't bother doing "AC_SUBST(PLUGIN_DIR)", as no Makefiles use PLUGIN_DIR as an autoconf variable. svn path=/trunk/; revision=6887
2002-12-04Bump the version to 0.9.8. Update NEWS and ChangeLog to October 24.Gerald Combs1-2/+2
svn path=/trunk/; revision=6741
2002-11-28Add a "--with-extra-gcc-checks" option, which causes "-Wcast-qualGuy Harris1-3/+13
-Wcast-align" to be added to CFLAGS (except in Wiretap, where we already do "-Wcast-qual"). We don't do them by default, as they produce some warnings that aren't easy to eliminate; if we figure out how to eliminate them on all platforms (or at least, on the platforms where you *can't* eliminate them, reduce them to a low level), we can make those options the default. svn path=/trunk/; revision=6689
2002-10-09Support for both old and brand new libtool versionsJörg Mayer1-1/+2
svn path=/trunk/; revision=6389
2002-10-06Change by Didier Gautheron to make automake 1.7 work.Jörg Mayer1-4/+4
svn path=/trunk/; revision=6372
2002-09-26Bump the version up to 0.9.7. The countdown begins. Too bad ourGerald Combs1-2/+2
releases don't involve explosive bolts like NASA launches do. Bring the ChangeLog and NEWS files up to date to the end of August. svn path=/trunk/; revision=6341
2002-08-28Add gtk2/glib2 handling to configure. Use --enable-gtk2 to useJörg Mayer1-3/+9
gtk2 instead of gtk and glib2 instead of glib. Right now, --enable-gtk2 will fail during compile unless acompanied by --disable-ethereal, as ethereal does not yet support gtk2 (but does support glib2 alone). svn path=/trunk/; revision=6107
2002-08-17Bump the version number to 0.9.6. Update the ChangeLog. Add roughGerald Combs1-2/+2
release notes to NEWS. svn path=/trunk/; revision=6006
2002-08-14Replace usage of AC_PROG_RANLIB which is deprecated for newer versionsJörg Mayer1-2/+2
of autoconf by AM_PROG_LIBTOOL svn path=/trunk/; revision=5992
2002-06-28Bump the version up to 0.9.5.Gerald Combs1-2/+2
svn path=/trunk/; revision=5779
2002-05-18Increment versions to 0.9.4, get NEWS current to April 25 (more NEWS toGerald Combs1-2/+2
come). svn path=/trunk/; revision=5500
2002-03-29Bump the version to 0.9.3. Update NEWS to be current toGerald Combs1-2/+2
http://www.ethereal.com/lists/ethereal-cvs/200203/msg00175.html (the rest will be added later). svn path=/trunk/; revision=5042
2002-03-03Bump the version to 0.9.2. Update NEWS to include everything from February.Gerald Combs1-2/+2
svn path=/trunk/; revision=4856
2002-03-02From Joerg Mayer: get rid of "-Wno-unused" flag in some configureGuy Harris1-6/+6
scripts, and check in changes to add _U_ to some unused arguments (some other should perhaps be used, so we leave the _U_ out so that the warnings serve as a reminder to check those). svn path=/trunk/; revision=4848
2002-02-27From Joerg Mayer:Guy Harris1-4/+12
In the "configure.in" files, add -D_U_="__attribute__((unused))" to CFLAGS if we're using GCC, and add -D_U_="" otherwise, so _U_ can be used to mark arguments as unused. Add -D_U_="" arguments to the Makefile.nmake files as well, so _U_ works with Microsoft Visual C++ as well. Add comments and RCS IDs to the Makefile.nmake files that don't already have them. svn path=/trunk/; revision=4824
2002-02-02Update version to 0.9.1. Add NEWS entries for 0.9.1 changes.Gerald Combs1-2/+2
svn path=/trunk/; revision=4684
2002-01-30Remove the "--without-gcc" option - it doesn't work with the Sun,Guy Harris1-6/+1
Digital UNIX, and HP C compilers, and it may not work with other compilers (due to the GLib problem mentioned in the previous checkin), so it runs the risk of being an "attractive nuisance", i.e. users may try it, find it doesn't work, and then send mail to various Ethereal mailing lists asking about it. svn path=/trunk/; revision=4640
2002-01-30Add a "--without-gcc" option, similar to what tcpdump and libpcap have.Guy Harris1-1/+6
(This isn't as useful for testing purposes as it is in tcpdump and libpcap, as GLib is configured based on the compiler used to compile it, so you can't necessarily build an application using GLib with a compiler different from the one used to compile GLib, but we'll add it anyway.) svn path=/trunk/; revision=4637
2001-12-23Bump the version up to 0.9.0. Update the NEWS file.Gerald Combs1-2/+2
svn path=/trunk/; revision=4440
2001-12-07Use "-no-cpp-precomp" rather than "-traditional-cpp" on MacOS X, as perGuy Harris1-3/+17
the "The Compiler and Tools" section on http://fink.sourceforge.net/doc/porting/basics.php Do so on MacOS X regardless of whether the compiler is called "gcc" or not, as that page also indicates that the compiler is installed as "cc". svn path=/trunk/; revision=4354
2001-10-28Check, in the configure script in the epan directory, whether we haveGuy Harris1-1/+3
"strptime()" and, if not, define NEED_STRPTIME_H. svn path=/trunk/; revision=4093
2001-10-12Get NEWS current up to July 31, update version to 0.8.20.Gerald Combs1-2/+2
svn path=/trunk/; revision=4021
2001-07-26MacOS support changes, from Michael Tuexen (with some modifications):Guy Harris1-2/+39
replace "--with-plugindir" with "--with-plugins", and have the plugin directory optional - this allows plugins to be disabled; add "--traditional-cpp" on MacOS X/Darwin (Apple's "cc" compiler requires it, for some annoying reason, even though it is, as far as I know, GCC-based, and other GCC's don't require it); on MacOS X, don't use "pcap_version[]", as, for some annoying reason, libpcap on MacOS X doesn't define it. Clean up some whitespace in the help messages for the configure script. Move the AM_CONDITIONAL for SETUID_INSTALL after the point at which "enable_setuid_install" is set, as it tests "enable_setuid_install". svn path=/trunk/; revision=3788
2001-07-13Updated for release 0.8.19Jeff Foster1-2/+2
svn path=/trunk/; revision=3716