aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2006-09-25Move the Lua interface into epan... (not a plugin anymore).Luis Ontanon1-1/+1
- Rename Tap into Listener - add a mechanism to pass protocols' tap data to the Listener svn path=/trunk/; revision=19319
2006-09-04Use portaudio if it's there. Check that we have the right version.Jörg Mayer1-3/+3
Note: This check is currently carried out by checking that the include defines PortAudioStream. If you know of any better check, please let me know. acinclude.m4: Replace sequences of 8 spaces by tab svn path=/trunk/; revision=19131
2006-09-02Move the codecs into a top-level "codecs" subdirectory; there's noGuy Harris1-2/+2
guarantee that all programs using the codecs will necessarily be using GTK+. svn path=/trunk/; revision=19117
2006-08-30From Alejandro Vaquero:Anders Broman1-0/+43
- Change the "listen_rtp" to "rtp_player" - Change from a plugin to be part of the core - By default it will not compile with the rtp_player. In order to compile it is necessary to: + For windows: uncomment the line "PORTAUDIO_DIR=$(WIRESHARK_LIBS)\portaudio_v18_1" in config.nmake + For linux: using the "--with-portaudio=yes" svn path=/trunk/; revision=19094
2006-08-24Bump the version to 0.99.4.Gerald Combs1-1/+1
svn path=/trunk/; revision=19014
2006-08-01# Ugly hack, but I don't see how this problem can be solvedJörg Mayer1-1/+4
# properly that DATAFILE_DIR had a value starting with # "${prefix}/" instead of e.g. "/usr/local/" That problem occurs only with current versions of autoconf svn path=/trunk/; revision=18814
2006-07-25Jeff Morriss:Jörg Mayer1-1/+1
According to this page: http://lists.gnupg.org/pipermail/gnupg-announce/2003q3/000155.html the 'gcry_cipher_hd_t' structure didn't show up until 1.1.42. svn path=/trunk/; revision=18789
2006-07-20we dont need our own snprintf any more since we always use g_snprintf() instead.Ronnie Sahlberg1-15/+0
svn path=/trunk/; revision=18771
2006-07-17Bump the trunk version to 0.99.3.Gerald Combs1-1/+1
svn path=/trunk/; revision=18749
2006-07-13Under Solaris (9, at least) the "iconv.h" header supplied with GNU libiconvGerald Combs1-1/+3
is incompatible with the iconv routines in libc. Add an aclocal macro from Bruno Haible that sorts everything out. svn path=/trunk/; revision=18729
2006-07-12Undo previous patch, it didn't helpJörg Mayer1-1/+1
svn path=/trunk/; revision=18721
2006-07-12Bugfix:Jörg Mayer1-1/+1
Variables should *not* be addressed as ${prefix} but as $prefix instead. That way they will get substituted and we will not try to open '${prefix}/share/wireshark/radius' which might not exist on some systems. svn path=/trunk/; revision=18720
2006-07-06Add the asn1 directory to the distribution.Gerald Combs1-0/+1
svn path=/trunk/; revision=18676
2006-07-06Set the version to 0.99.2, since we're building releases from /trunk again.Gerald Combs1-1/+1
svn path=/trunk/; revision=18674
2006-06-21From Christian Durrer:Jaap Keuter1-0/+1
I hope this is the right place to send a patch for a new dissector plugin. The telegram it dissects are for the communication between PLCs (Programmable logic controller) from the company Saia Burgess Controls Ltd. (http://www.start-controls.com, http://www.saia-burgess.com or http://www.sbc-support.ch). The protocol is named Ether-S-Bus (the PLCs are called PCD2, PCD3, PCD4). svn path=/trunk/; revision=18526
2006-06-20Change ETH_VAR_IMPORT to WS_VAR_IMPORT. Try to fix a duplicate variableGerald Combs1-2/+2
definition in the Catapult DCT2000 code. svn path=/trunk/; revision=18524
2006-06-14configure.in:Jörg Mayer1-1/+18
Check for libgcrypt 1.1.0 (note: I don't know which version is required, so maybe the version number needs to be changed for this test to work reliably). packet-ipsec.c: - Replace __USE_LIBGCRYPT__ by HAVE_LIBGCRYPT to follow conventions. - Warning fixes: signedness in sscanf (%i -> %u) - Warning fixes: mixed declaration and code svn path=/trunk/; revision=18460
2006-06-13Remove some trailing whitespaceJörg Mayer1-5/+5
svn path=/trunk/; revision=18452
2006-06-01Ethereal->WiresharkMichael Tüxen1-4/+4
svn path=/trunk/; revision=18300
2006-05-31More ethereal -> wireshark.Gerald Combs1-28/+28
svn path=/trunk/; revision=18292
2006-05-31Rename the main executable to "wireshark", along with more conversions:Gerald Combs1-38/+38
ethereal.com -> wireshark.org mailing lists and addresses ETHEREAL -> WIRESHARK Man pages Automake/Autoconf names svn path=/trunk/; revision=18271
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs1-12/+12
svn path=/trunk/; revision=18268
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