aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
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-04-21From Erwin Rol: ArtNET support.Guy Harris1-1/+2
svn path=/trunk/; revision=7518
2003-03-25DATAFILE_DIR in the top-level config.h isn't used; don't bother definingGuy Harris1-10/+1
it. (Nothing other than "get_datafile_dir()" should use it - anything that needs to know whether the configuration files are located should use "get_datafile_dir()".) svn path=/trunk/; revision=7367
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-08Put the code to get version numbers of various libraries with whichGuy Harris1-2/+2
Ethereal/Tethereal was linked into a common routine, and use that in both Ethereal and Tethereal. Add to that routine code to get OS version information. svn path=/trunk/; revision=7320
2003-03-04Bump the version to 0.9.10.Gerald Combs1-2/+2
svn path=/trunk/; revision=7271
2003-03-02Disable simultaneous building of static and shared binariesJörg Mayer1-1/+3
svn path=/trunk/; revision=7255
2003-03-01We have some SNMP if we have NET-SNMP *or* UCD SNMP, not just if we haveGuy Harris1-2/+2
NET-SNMP *and* UCD SNMP. svn path=/trunk/; revision=7229
2003-02-28Put out the "Checking whether to use UCD SNMP/NET-SNMP library ifGuy Harris1-2/+2
available" message *after* checking for net-snmp-config - nesting something such as AC_PATH_PROG that produces a "Checking..." message inside another check causes the pairing of check and result messages to be broken. svn path=/trunk/; revision=7221
2003-02-26From Pavel Roskin:Guy Harris1-8/+19
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-13/+13
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-21Add a small fixme aboutn --enable-usr-localJörg Mayer1-1/+4
svn path=/trunk/; revision=6957
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-14From Christian Falckenberg: beginnings of a MEGACO dissector.Guy Harris1-1/+2
Move SCTP payload protocol IDs to a header file, and get the PPIDs from that header file rather than defining them in dissectors running atop SCTP. Use both the old(?) and official PPID for ASAP. svn path=/trunk/; revision=6926
2003-01-10Use "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. svn path=/trunk/; revision=6888
2003-01-09Use "plugindir", not "PLUGIN_DIR", as the variable name in the configureGuy Harris1-8/+6
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-11-03Merge gtk and gtk2 directories.Olivier Abad1-17/+12
svn path=/trunk/; revision=6552
2002-10-25Fix a typo and fix alignment.Guy Harris1-2/+2
svn path=/trunk/; revision=6506
2002-10-23From Wes Hardaker:Guy Harris1-14/+23
Define HAVE_SOME_SNMP if either HAVE_UCD_SNMP or HAVE_NET_SNMP is defined, and use HAVE_SOME_SNMP, rather than HAVE_UCD_SNMP, in most places when testing whether we have an SNMP library or not. Be more selective when including Net-SNMP header files. Fix up {gtk,gtk2}/main.c to do the same SNMP stuff that tethereal.c does - including the MIB stuff that gtk/main.c was doing but gtk2/main.c wasn't doing. Fix the copyright date in gtk/main.c. svn path=/trunk/; revision=6483
2002-10-23In the message indicating how Ethereal was configured, say "Use UCDGuy Harris1-2/+2
SNMP/NET-SNMP" rather than just "Use UCD SNMP", now that we support both. svn path=/trunk/; revision=6480
2002-10-22Wes Hardaker: Support NET-SNMP in addition to UCD-SNMPJörg Mayer1-7/+42
svn path=/trunk/; revision=6475
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
Replaced AC_CANONICAL_SYSTEM with AC_CANONICAL_TARGET. svn path=/trunk/; revision=6370
2002-10-03Added a dissector plugin for Packet Cable Lawful Intercept.Ed Warnicke1-1/+2
svn path=/trunk/; revision=6366
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-09-11Fix the test for "want_zlib" being "no" when generating the messageGuy Harris1-2/+2
indicating whether we'll be building with zlib. svn path=/trunk/; revision=6265
2002-09-10Check the right variable when generating the indication of whether we'reGuy Harris1-2/+2
building with zlib or not. svn path=/trunk/; revision=6262
2002-09-04When compiling for Gtk2, make sure we link with gthread as well.Ronnie Sahlberg1-2/+2
svn path=/trunk/; revision=6181
2002-08-31GTK+ v2 port.Olivier Abad1-2/+5
All the deprecated widgets have not been replaced yet : GtkList and GtkCList ==> GtkTreeView conversion : - color_dlg.c - column_prefs.c - decode_as_dlg.c : done - dfilter_expr_dialog - filter_prefs.c - main.c - plugins_dlg.c : done GtkCTree ==> GtkTreeView conversion : done GtkText ==> GtkTextView conversion : done Remaining problems : - gtk_font_selection_dialog_set_filter doesn't exist anymore (but hasn't been removed from the documentation). I don't know how to filter the font selection dialog to get only fixed width fonts ; - we have to remove GUI prefs which are not usefule anymore : tree line style and tree expander style. svn path=/trunk/; revision=6153
2002-08-28Add gtk2/glib2 handling to configure. Use --enable-gtk2 to useJörg Mayer1-6/+24
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-15Add AC_LIBTOOL_DLOPEN back, because older automake/autoconf versionsJörg Mayer1-1/+2
don't include it automatically. This needs to go before AC_PROG_LIBTOOL to avoid warnings with newer versions. svn path=/trunk/; revision=5997
2002-08-14Replace usage of AC_PROG_RANLIB which is deprecated for newer versionsJörg Mayer1-3/+2
of autoconf by AM_PROG_LIBTOOL svn path=/trunk/; revision=5992
2002-07-12From Anand V. Narwani:Guy Harris1-2/+3
DOCSIS support, including support for "Ethernet" captures where the raw frame is a DOCSIS frame rather than an Ethernet frame (some Cisco cable-modem head-end gear can send out a trace of all traffic on an Ethernet, but what it sends are the raw bytes of DOCSIS frames, not Ethernet frames) Get rid of second AUTHORS entry for Devin Heitmueller, merging its item into the older entry. Clean up the order of some lists of plugin items. svn path=/trunk/; revision=5861
2002-07-06From Nix:Guy Harris1-2/+4
Don't add "-I/usr/include" to CFLAGS or CPPFLAGS; GCC 3.1 warns about it, and it's not necessary. Expand the plugin directory path used for installation at installation time, rather than configuration time, so the user can reset "prefix" at installation time. svn path=/trunk/; revision=5828
2002-06-28Bump the version up to 0.9.5.Gerald Combs1-2/+2
svn path=/trunk/; revision=5779
2002-05-18Make the default SNMP build behavior "ifpresent" instead of "yes", so thingsGerald Combs1-6/+2
work as they should by default on systems without SNMP libraries. svn path=/trunk/; revision=5502
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-05-16Set the default for "--want_ucdsnmp" back to "yes", since overflow problemsGerald Combs1-2/+2
have been fixed in recent versions. svn path=/trunk/; revision=5493
2002-05-04From Joerg Mayer: get rid of "-Wno-unused".Guy Harris1-6/+6
svn path=/trunk/; revision=5392
2002-04-08Clean up the "Use zlib library" message.Guy Harris1-4/+8
svn path=/trunk/; revision=5116
2002-04-08Replace "--enable-zlib" with "--with-zlib", and have it take an optionalGuy Harris1-7/+25
"=DIR" argument to specify the directory in subdirectories of which zlib's headers and libraries can be found. svn path=/trunk/; revision=5115
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-23Default to *not* using the UCD SNMP library, as the current versionsGuy Harris1-2/+10
have buffer-overflow vulnerabilities that we can't avoid. You have to ask for it explicitly if you want it. svn path=/trunk/; revision=5007
2002-03-12Get rid of the "--enable-snmp" option; instead, use "--with-ucdsnmp".Guy Harris1-51/+24
Make the directory option to "--with-ucdsnmp" optional. Handle "--with-ucdsnmp" similar to the way "--with-pcap" is handled. Get rid of unnecessary #defines in "packet-cops.c". Get rid of no-longer-necessary include of "dlfcn.h" in "packet-snmp.c". svn path=/trunk/; revision=4930
2002-03-11In the message at the end that indicates how Ethereal was configured,Guy Harris1-2/+2
refer to "UCD SNMP" rather than just "SNMP". svn path=/trunk/; revision=4927
2002-03-10Use the "sprint_realloc_" routines in UCD SNMP 4.2.2 and later, ratherGuy Harris1-37/+15
than the "sprint_" routines in UCD and CMU SNMP; the latter routines have no bounds checking, and if you use them you cannot protect against buffer overflows. As we now require UCD SNMP 4.2.2 or later: 1) we no longer need code to support CMU SNMP; 2) we no longer need code to work around problems with UCD SNMP 4.1.1; and, as we no longer use the "sprint_" routines, we no longer need code to work around the changed API and ABI of those routines in some nonstandard versions of the UCD SNMP library. svn path=/trunk/; revision=4914
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