aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2006-05-31libethereal -> libwireshark. idl2eth -> idl2wrs. There are a _lot_ ofGerald Combs1-12/+12
changes here. It compiles OK on OS X, but hasn't been tested anywhere else. svn path=/trunk/; revision=18260
2006-05-22ethereal->wiresharkRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=18208
2006-05-01Bump the version number to 1.1. Clean up the release notes.Gerald Combs1-1/+1
svn path=/trunk/; revision=18062
2006-04-120.10.14 -> 0.99.0.Gerald Combs1-1/+1
svn path=/trunk/; revision=17849
2006-02-27Add guard pages to emem.c. GP memory is protected using mprotect()Gerald Combs1-0/+1
under UNIX and VirtualProtect() under Windows. This probably breaks compatibility with Windows 95/98/ME. svn path=/trunk/; revision=17424
2006-02-15Check for getopt in the configure script, as we do for other routinesGuy Harris1-0/+13
not available on all platforms. Include getopt.c in EXTRA_ethereal_SOURCES and include getopt.h in EXTRA_ethereal_INCLUDES, as we do with the other files that supply routines not available on all platforms, rather than always including them in the source for dumpcap. svn path=/trunk/; revision=17311
2006-02-14Change suid to take dumpcap into accountJörg Mayer1-1/+5
svn path=/trunk/; revision=17299
2006-02-12"default on" for dumpcap generation (it's required at least for Ethereal's ↵Ulf Lamping1-1/+1
capturing now) svn path=/trunk/; revision=17265
2006-02-07lua autofoo:Jörg Mayer1-2/+2
- Fail if with-lua was given but liblualib is missing - Make the test for liblualib succeed on my system (make sure the test gets linked with liblua and libm). svn path=/trunk/; revision=17198
2006-02-06Add code to check whether the app was started with special privilegesGuy Harris1-0/+1
(e.g., set-UID or set-GID), and don't load user plugs if it is. svn path=/trunk/; revision=17174
2006-02-04Paolo AbeniJörg Mayer1-0/+19
I have developed an external plugin to enable ssl decryption in ethereal. Me - Remove unnecessary $Id$ from acinclude.m4 - Added packet-ssl-utils.h to Makefile.common - Fixed a few warnings TODO - Lots of warning fixes (see separate mail) - Reformat function headers to read like the others do (return value<newline>function-name...) - Test on Windows platform - Review the patch to packet-ssl.c and new files packet-ssl-utils.[hc] svn path=/trunk/; revision=17156
2006-01-31It was hard.. but at the end I won (or at least i believe so...).Luis Ontanon1-0/+43
After install hello_world.lua works. svn path=/trunk/; revision=17137
2005-12-21Prep for 0.10.14.Gerald Combs1-1/+1
svn path=/trunk/; revision=16872
2005-11-28Add support for building dumpcap, and fix dumpcap to build on UN*X.Guy Harris1-0/+17
svn path=/trunk/; revision=16618
2005-11-08When using GCC, compile with -Wpointer-arith, to catch code that someGuy Harris1-1/+1
other C compilers can't handle. svn path=/trunk/; revision=16431
2005-10-12Updates for 0.10.13.Gerald Combs1-1/+1
svn path=/trunk/; revision=16201
2005-10-06Build the h223 pluginAnders Broman1-0/+1
svn path=/trunk/; revision=16140
2005-09-17Move a pile of protocol-related headers from the top-level sourceGuy Harris1-1/+1
directory to the epan directory. Some of them should perhaps ultimately be moved to epan/dissectors, if they pertain only to stuff exported by a particular dissector. Fix Gerald's e-mail address in files we're moving. svn path=/trunk/; revision=15844
2005-09-15Add PRIX64, as we now use it.Guy Harris1-0/+1
svn path=/trunk/; revision=15811
2005-09-08Let's migrate the xml dissector...Luis Ontanon1-1/+0
svn path=/trunk/; revision=15729
2005-08-20Add -Wmissing-declarations -Wwrite-strings to extra-gcc-flagsJörg Mayer1-1/+1
svn path=/trunk/; revision=15453
2005-07-29Pick up some fixes and enhancements fromGerald Combs1-0/+8
http://cvs.fedora.redhat.com/viewcvs/rpms/ethereal/FC-4/: In the LPD dissector, make lpd_client_code a value_string so that we don't segfault. Do the same for lpd_server_code, although it's not strictly necessary. Check to see if htmlview is installed, and use it as our HTML viewer. The Fedora RPM has other patches, but I'm not sure if they should be applied. svn path=/trunk/; revision=15143
2005-07-26Build randpkt by default.Gerald Combs1-1/+1
svn path=/trunk/; revision=15099
2005-07-22Bump the version and add a few entries to the NEWS file.Gerald Combs1-1/+1
svn path=/trunk/; revision=14995
2005-05-02Prep for the next release. ETA Wednesday (the 4th).Gerald Combs1-1/+1
svn path=/trunk/; revision=14270
2005-05-02Add "plugins/profinet/Makefile" to configure.in.Gerald Combs1-0/+1
svn path=/trunk/; revision=14267
2005-03-17Fix the display of help information for various --with arguments (forGuy Harris1-35/+40
whatever reason, the changequote() hack doesn't seem to be working, at least on OS X; the square brackets were simply being removed from the messages). Rename the "ifpresent" value for the --with variables to "ifavailable", to match the help messages. At least for the SNMP libraries, have the "checking" message just say "whether to use XXX" and have the result message say "yes, if available" if the user didn't explicitly specify "--with" or "--without", as the default just leaves the library out if it doesn't work, but explicitly specifying "--with" means you get an error if it doesn't work. Make "--with-net-snmp" fail if the headers aren't present (if the user explicitly asks for something, we should fail if we can't give it to them, as they presumably really wanted it). svn path=/trunk/; revision=13789
2005-03-16Capitalize "Net-SNMP" the way the Net-SNMP project capitalizes it.Guy Harris1-72/+37
Note that the "=PATH" argument to "--with-net-snmp" is optional. If "--with-net-snmp" is specified, give an error if Net-SNMP is found but "--with-ssl" wasn't specified, as the user has specified that they really want a version of Ethereal with Net-SNMP; if it's not specified, just warn of that and drive on, as we did before. svn path=/trunk/; revision=13786
2005-03-09Prep for 0.10.10: Update the ChangeLog and NEWS files, bump the versionGerald Combs1-1/+1
number. svn path=/trunk/; revision=13685
2005-03-06Add stats_tree and xml plugins to the build processLuis Ontanon1-0/+2
svn path=/trunk/; revision=13629
2005-02-24Search for fop, not fop.shJörg Mayer1-3/+3
svn path=/trunk/; revision=13499
2005-02-20Correct fix for distcheck this time - definitelyJörg Mayer1-1/+0
svn path=/trunk/; revision=13445
2005-02-20Remove stats_tree again: It breaks distcheckJörg Mayer1-1/+0
svn path=/trunk/; revision=13441
2005-02-20Beginnings of autogenerating docbook/Makefile (long way to go) so call it ↵Jörg Mayer1-0/+23
Makefile.auto for now svn path=/trunk/; revision=13439
2005-02-20Create stats_tree Makefile to allow manual buildsJörg Mayer1-0/+1
svn path=/trunk/; revision=13438
2005-02-10From Oleg Terletsky: AgentX support.Guy Harris1-0/+1
svn path=/trunk/; revision=13372
2005-02-06Back out the previous change - we were setting "datafiledir", notGuy Harris1-0/+9
"datafile", and code in epan/filesystem.c expectes DATAFILE_DIR to be set to the "ethereal" subdirectory of the data directory, not to the data directory itself. svn path=/trunk/; revision=13322
2005-02-04Albert Chin:Jörg Mayer1-9/+0
>From autoconf.info: In order to support these features, it is essential that `datadir' remains being defined as `${prefix}/share' to depend upon the current value of `prefix'. A corollary is that you should not use these variables except in Makefiles. For instance, instead of trying to evaluate `datadir' in `configure' and hard-coding it in Makefiles using e.g., `AC_DEFINE_UNQUOTED(DATADIR, "$datadir")', you should add `-DDATADIR="$(datadir)"' to your `CPPFLAGS'. svn path=/trunk/; revision=13275
2005-01-15Add mate to the build process (plus a few whitespace changes)Jörg Mayer1-3/+4
svn path=/trunk/; revision=13051
2005-01-15Bump the version to 0.10.9.Gerald Combs1-1/+1
svn path=/trunk/; revision=13049
2004-12-07Updates for 0.10.8.Gerald Combs1-1/+1
svn path=/trunk/; revision=12683
2004-10-20renamed capinfo to capinfos, as the former name capinfo was already used in ↵Ulf Lamping1-11/+11
a program called tcprelay, so that might confuse packaging managers and users. Hopefully I got all the places need to be changed. svn path=/trunk/; revision=12358
2004-10-15Dectect MIT-Kerberos as wellJörg Mayer1-6/+6
svn path=/trunk/; revision=12302
2004-10-08Bump the version to 0.10.7.Gerald Combs1-1/+1
svn path=/trunk/; revision=12243
2004-09-26Fix a typo.Guy Harris1-1/+1
svn path=/trunk/; revision=12107
2004-09-26In the SNMP tests, we're using AC_TRY_LINK to avoid caching the resultsGuy Harris1-3/+0
of the test for sprint_realloc_objid() (so that a failure to find it when we're not linking with extra libraries doesn't cause us to assume we won't find it if we *do* link with extra libraries), so "ac_cv_lib_snmp_sprint_realloc_objid" doesn't get set - set our own variable for that. Use AC_TRY_LINK rather than AC_CHECK_LIB in the Kerberos tests when checking for krb_k5_resolve(), to avoid caching the results. Improve the messages printed in the Kerberos tests to give more detail. svn path=/trunk/; revision=12106
2004-09-26Clean up a bunch of cruft in --with-ssl; make it more resemble otherGuy Harris1-6/+35
--with flags. Report, in the messages at the end of the configure script, whether we're building with the SSL library. If we fail to find "sprint_realloc_objid()" when linking with a particular library, and --with-ssl wasn't specified, try linking with -lcrypto as well and, if that succeeds, fail with an indication that UCD SNMP requires -lcrypto but --with-ssl wasn't specified. svn path=/trunk/; revision=12105
2004-09-05Name the variables that have the names of ".lo" files as _LO, not _O;Guy Harris1-7/+25
put the name of the ".o" files into _O variables (I'm not sure whether the current .am files automatically support building programs statically linked with libethereal, as a result of using libtool; if so, the _O versions of those variables aren't necessary, and, if not, we probably need to use them). Use the _LO variables in libethereal_la_LIBADD and libethereal_la_DEPENDENCIES. (This means that we use "g_ascii_strtoull.lo" rather than "g_ascii_strtoull.o" to make the libethereal shared library; that's what we need to do, but we weren't doing it.) svn path=/trunk/; revision=11906
2004-09-03Some UN*Xes don't have any "strtou*" routine to convert a string to aGuy Harris1-18/+16
64-bit integer; use "g_ascii_strtoull()", and, in the configure script, check whether it's available in GLib (it's not in GLib 1.2[.x]) and, if not, supply the GLib 2.4.5 version of the routine. For G_MAXUINT32 and G_MAXUINT64, put a "U" at the end of the constant to explicitly flag it as unsigned. svn path=/trunk/; revision=11889
2004-08-22FreeBSD 3.4 doesn't have "strtoull()", but it does have "strtouq()",Guy Harris1-0/+18
which does the same thing - check for "strtoull()" and, if it's missing, check for "strtouq()" and, if we have it, define strtoull as strtouq. svn path=/trunk/; revision=11798