aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2007-01-22Bump the trunk version to 0.99.6.Gerald Combs1-1/+1
svn path=/trunk/; revision=20526
2007-01-12Automake variables ending with _LDFLAGS are special:Guy Harris1-2/+2
http://sources.redhat.com/ml/automake/2001-08/msg00046.html so call it LDFLAGS_SHAREDLIB rather than SHAREDLIB_LDFLAGS. svn path=/trunk/; revision=20410
2007-01-04On Darwin, build shared libraries with -Wl,-single_module to the LDFLAGSGuy Harris1-1/+9
used with shared libraries, to fix some error that shows up in some cases; some Apple documentation recommends it for most shared libraries. svn path=/trunk/; revision=20312
2007-01-04-Wl,-single_module breaks the configure script.Guy Harris1-6/+1
svn path=/trunk/; revision=20302
2007-01-04Add -Wl,-single_module to the linker flags in Darwin. The page atGuy Harris1-8/+14
http://developer.apple.com/releasenotes/DeveloperTools/RN-dyld/index.html says The static linker ld(1) supports building dylibs as either -multi_module or -single_module. Conceptually, a multi-module dylib is like a group of smaller dylibs - one per source file. The extra meta-data in a multi-module dylib allowed (pre-10.4) dyld to delay binding and running initializers on the individual modules. In Mac OS X 10.4 dyld ignores all multi-module meta-data and completely binds and runs all initializers the same as if it were built single-module. In general, building dylibs -single_module is preferred. The one case where multi-module is still useful is it allows internal functions of a dylib to be interposable. For instance, libSystem.dylib is built multi_module so that malloc() can be overridden and all uses of malloc in libSystem (e.g. strdup) would be redirected to use the overridden version. and we don't need the interposability for our dylibs, and Andreas Fink indicates that it's necessary for the packaged Wireshark builds he's doing. svn path=/trunk/; revision=20301
2006-12-30When building for Darwin, link with -search_paths_first, so thatGuy Harris1-8/+30
--with-pcap=/usr/local will, if there's only a static libpcap in /usr/local/lib, link with that rather than the system's dynamic version. Move the check for Cygwin that adds -no-undefined to LDFLAGS to the section checking for linker flags to add. svn path=/trunk/; revision=20241
2006-12-28Move the contents of airpdcap to epan/crypt. Try to fix the currentGerald Combs1-1/+1
distcheck failure. Move the nmake build targets for airpdcap from epan/dissectors to epan. This will probably break the Windows build. svn path=/trunk/; revision=20231
2006-12-27Prepare to move the airpdcap code to epan/crypt (SVN won't let me actuallyGerald Combs1-0/+7
move the files until these changes are checked in). Add an AC_DEFINE for airpdcap (which will be removed once the changes have settled). Update the airpdcap code to compile on non-Windows systems. Fix up comments and whitespace to conform more closely to the rest of the code base. Verified to compile under Windows and OS X. svn path=/trunk/; revision=20227
2006-12-09Remove mention of UCD SNMP completely.Jaap Keuter1-1/+1
svn path=/trunk/; revision=20081
2006-12-08Get rid of UCD SNMP support (it's not longer supported andJörg Mayer1-46/+5
superseeded by net-snmp). Replace some_snmp by net_snmp where appropriate. svn path=/trunk/; revision=20071
2006-11-06Fix an inadvertent change.Gerald Combs1-1/+1
svn path=/trunk/; revision=19837
2006-11-06Remove ACN.Gerald Combs1-2/+1
svn path=/trunk/; revision=19836
2006-11-03Bump the version to 0.99.5.Gerald Combs1-1/+1
svn path=/trunk/; revision=19781
2006-10-31Repeat after me: Test submission before sending.Jörg Mayer1-1/+1
Repeat after me: Test patches before committing. svn path=/trunk/; revision=19755
2006-10-31Robert Schwebel:Jörg Mayer1-1/+13
Fix for http://bugs.wireshark.org/bugzilla/attachment.cgi?id=419&action=view cross compilation fails With the following change: Use only AC_CANONICAL_TARGET From the autoconf manual: The user is encouraged to use either `AC_CANONICAL_BUILD', or `AC_CANONICAL_HOST', or `AC_CANONICAL_TARGET', depending on the needs. Using `AC_CANONICAL_TARGET' is enough to run the two other macros. svn path=/trunk/; revision=19753
2006-10-30carsten.prescher@eads.com:Jörg Mayer1-0/+1
Fix for http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1114 @SHELL@ not replaced in idl2wrs svn path=/trunk/; revision=19742
2006-10-20Line up the colons in the list of configure options.Guy Harris1-12/+12
svn path=/trunk/; revision=19637
2006-10-18From Shaun JackmanJaap Keuter1-1/+0
The RDM protocol has been accepted as ANSI standard E1.20-2006. The following patch updates the decoder to that spec. At the same time it is promoted to a build-in dissector. svn path=/trunk/; revision=19596
2006-10-04Fix the version.Gerald Combs1-1/+1
svn path=/trunk/; revision=19433
2006-10-02Fix WEP key bug in the AirPcap code that could cause a crash. EnableGerald Combs1-1/+1
AirPcap by default. Add initial support for the "Any" device in AirPcap (more to come). svn path=/trunk/; revision=19401
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