aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2007-06-18get rid of the "case" statement to test the value of withval.standel1-18/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22126 f5534014-38df-0310-8fa8-9805f1628bb7
2007-06-150.99.6 has been split off. Bump the trunk to 0.99.7.gerald1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22111 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-29Check for G_GINT64_MODIFIER in Wireshark as we do in Wiretap.guy1-0/+38
In all the places where a cast to "long long" or "unsigned long long" was done, use G_GINT64_MODIFIER and get rid of the cast, as 1) there's no guarantee that "%ll" works and 2) there's no guarantee that "long long" works (the latter definitely does *NOT* work with MSVC++; the former doesn't work with regular printf in MSVC++, but it might work with the GLib printf-based functions). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21978 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-25From Mike Harvey: Support for WiMAX and the WiMAX M2M encapsulation protocol.gerald1-0/+2
Add support for WiMAX and M2M to various makefiles and installer files. Add basic support for M2M to randpkt. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21945 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-24Back out the previous change.guy1-15/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21918 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-24Temporarily turn on a bunch of warnings and turn off -Werror, to seeguy1-1/+15
what the complete set of warnings we should either try to fix or, for cases where it can't be fixed, turn off or or avoid -Werror for. I'll revert this change as soon as a complete set of buildbot builds start with it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21917 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-22If GTK+ isn't available, fail unless the user explicitly specifiedguy1-9/+7
"--disable-wireshark"; if they haven't explicitly said that they don't want Wireshark, assume they do, and that they won't be happy if, when the build finishes, they don't have Wireshark and weren't made sufficiently aware that they wouldn't get it. People who want to build TShark for machines that don't have GTK+ installed, but don't want to build Wireshark because they can't install GTK+ on the build/target machine, can still do that; they just have to explicitly specify "--disable-wireshark" to do it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21883 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-19temporarily put cast-align in extra-gcc-warnings while compilation on Solarisstandel1-2/+4
slave generates 'cast increases required alignment of target type' warnings. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21835 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-18typo fixstandel1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21822 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-18temporarily disable cast-align warningsstandel1-2/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21821 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-14from Gerhard Gappmeier (ascolab):ulfl1-0/+1
new dissector for OPCUA protocol git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21760 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-07there was a syntax error introduced in this file which made it sahlberg1-1/+1
impossible to configure and build wireshark under gtk1 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21709 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-05If the user explicitly specified "--enable-wireshark", fail immediatelyguy1-4/+15
if the test for GTK+ fails; that lets the user insist on getting Wireshark and gives them immediate feedback if they can't have it, so they can either give up and just get TShark or fix the problem. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21687 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-23Add some GCC warnings to the standard set, and add some others to theguy1-8/+11
--enable-extra-gcc-checks set. If we turn on -pedantic, try turning on -Wno-long-long as well, so that it's not *so* pedantic that it rejects the 64-bit integral data types that we explicitly require. Constify a bunch of stuff, and make some other changes, to get rid of warnings. Clean up some indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21526 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-22Fix regression: Automatically disable -Werror in case of extra gcc flags.jmayer1-2/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21513 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-22adding AC_(WIRESHARK|WIRETAP)_GCC_CFLAGS_OPTION macro to test whether gccstandel1-47/+25
supports the options passed as arguments. If the options are supported, they are added to CFLAGS. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21493 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-22Use AC_HELP_STRING for the help strings for --with and --enable flags.guy1-60/+104
Add -Wpointer-arith to the GCC -W flags by default. Make "extra-gcc-checks" and "warnings-as-errors" --enable flags rather than --with flags - autoconf's model is that --enable is for turning features on or off, --with is for enabling or disabling the use of external packages (libpcap, Net-SNMP, GNU ADNS, etc.). When testing whether the compiler is GCC, use the same style all the time - check whether "x$GCC" equals "xyes". (The "x" might be overkill - if you don't quote the arguments, it avoids a missing argument to "test"/"[", but if you do, it might not be needed.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21492 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-17Fix --with(out)-warnings-as-errors test so warnings-as-errors can be ↵morriss1-4/+4
disabled (with gcc) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21453 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-14Disable warnings as errors if extra gcc warnings was specified.jmayer1-8/+16
Change to positive logic --without-warnings-as-errors (default no) ==> --with-warnings-as-errors (default yes) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21425 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-13change the script to automatically stop on warning if compiling with gcc.standel1-16/+19
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21421 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-08Fix a comment.guy1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21356 f5534014-38df-0310-8fa8-9805f1628bb7
2007-04-08Get rid of extra white space in configure message.guy1-2/+2
Quote the message about flags added for the Apple linker, so it shows up correctly. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21354 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-28Remove almost all of the casts I committed recently and in place ofsfisher1-0/+17
them, add -Wno-pointer-sign to CFLAGS when gcc will accept it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21253 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-26Fix distcheck by removing the reference to the megaco pluginmorriss1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21209 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-26Change the test for -Wdeclaration-after-statement slightly to make it work ↵morriss1-2/+1
for me. Also redirect its stderr to /dev/null to avoid worrying users git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21208 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-26older versions of gcc do not check -W parameters when only running the ↵sahlberg1-1/+11
preprocessor. change the test for whether -Wdeclaration-after-statement so that it also works for ancient gcc git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21205 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-26If we're using gcc, try to use -Wdeclaration-after-statement to catch more ↵morriss1-0/+8
non-portable commits. I'm not sure if this is the Right Way to test to see if the compiler can handle a specific option but it's simple and efficient enough. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21195 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-23From Sebastien Tandel:sfisher1-2/+12
(Temporarily disable the warnings as errors default on Unix to get to get the buildbots and people with gcc40 going again until those additional warnings gcc40 generates can be fixed-I'm working on it ASAP) Patch for configure.in which disables by default the treatment of warnings as errors. It can be enabled with './configure --with-warnings-as-errors'. The macro will test first if GCC is present. If it's the case, HAVE_WARNINGS_AS_ERRORS is defined. All the USING_GCC have been replaced by HAVE_WARNINGS_AS_ERRORS. With this switch, people won't suffer from unexpected warnings when downloading svn sources during the transition time ;) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21153 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-22Add -Werror when using GCC only to the Makefile.am of the basesfisher1-0/+3
directory and most of the plugins to match the same command put in the Makefile.nmake files for Windows compliations. Fix a few warnings when compiling under gcc 3.4.4 on FreeBSD. Create new automake file variable called USING_GCC in configure.in and wiretap/configure.in to acomplish the above -Werror addition. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21127 f5534014-38df-0310-8fa8-9805f1628bb7
2007-01-22Bump the trunk version to 0.99.6.gerald1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20526 f5534014-38df-0310-8fa8-9805f1628bb7
2007-01-12Automake variables ending with _LDFLAGS are special:guy1-2/+2
http://sources.redhat.com/ml/automake/2001-08/msg00046.html so call it LDFLAGS_SHAREDLIB rather than SHAREDLIB_LDFLAGS. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20410 f5534014-38df-0310-8fa8-9805f1628bb7
2007-01-04On Darwin, build shared libraries with -Wl,-single_module to the LDFLAGSguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20312 f5534014-38df-0310-8fa8-9805f1628bb7
2007-01-04-Wl,-single_module breaks the configure script.guy1-6/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20302 f5534014-38df-0310-8fa8-9805f1628bb7
2007-01-04Add -Wl,-single_module to the linker flags in Darwin. The page atguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20301 f5534014-38df-0310-8fa8-9805f1628bb7
2006-12-30When building for Darwin, link with -search_paths_first, so thatguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20241 f5534014-38df-0310-8fa8-9805f1628bb7
2006-12-28Move the contents of airpdcap to epan/crypt. Try to fix the currentgerald1-1/+1
distcheck failure. Move the nmake build targets for airpdcap from epan/dissectors to epan. This will probably break the Windows build. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20231 f5534014-38df-0310-8fa8-9805f1628bb7
2006-12-27Prepare to move the airpdcap code to epan/crypt (SVN won't let me actuallygerald1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20227 f5534014-38df-0310-8fa8-9805f1628bb7
2006-12-09Remove mention of UCD SNMP completely.jake1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20081 f5534014-38df-0310-8fa8-9805f1628bb7
2006-12-08Get rid of UCD SNMP support (it's not longer supported andjmayer1-46/+5
superseeded by net-snmp). Replace some_snmp by net_snmp where appropriate. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20071 f5534014-38df-0310-8fa8-9805f1628bb7
2006-11-06Fix an inadvertent change.gerald1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19837 f5534014-38df-0310-8fa8-9805f1628bb7
2006-11-06Remove ACN.gerald1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19836 f5534014-38df-0310-8fa8-9805f1628bb7
2006-11-03Bump the version to 0.99.5.gerald1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19781 f5534014-38df-0310-8fa8-9805f1628bb7
2006-10-31Repeat after me: Test submission before sending.jmayer1-1/+1
Repeat after me: Test patches before committing. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19755 f5534014-38df-0310-8fa8-9805f1628bb7
2006-10-31Robert Schwebel:jmayer1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19753 f5534014-38df-0310-8fa8-9805f1628bb7
2006-10-30carsten.prescher@eads.com:jmayer1-0/+1
Fix for http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1114 @SHELL@ not replaced in idl2wrs git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19742 f5534014-38df-0310-8fa8-9805f1628bb7
2006-10-20Line up the colons in the list of configure options.guy1-12/+12
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19637 f5534014-38df-0310-8fa8-9805f1628bb7
2006-10-18From Shaun Jackmanjake1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19596 f5534014-38df-0310-8fa8-9805f1628bb7
2006-10-04Fix the version.gerald1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19433 f5534014-38df-0310-8fa8-9805f1628bb7
2006-10-02Fix WEP key bug in the AirPcap code that could cause a crash. Enablegerald1-1/+1
AirPcap by default. Add initial support for the "Any" device in AirPcap (more to come). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19401 f5534014-38df-0310-8fa8-9805f1628bb7
2006-09-25Move the Lua interface into epan... (not a plugin anymore).lego1-1/+1
- Rename Tap into Listener - add a mechanism to pass protocols' tap data to the Listener git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19319 f5534014-38df-0310-8fa8-9805f1628bb7