aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2011-05-12Conditional support for packet-editor [default=no].Jakub Zawadzki1-0/+8
svn path=/trunk/; revision=37084
2011-05-03Don't bother checking for gzgets(), as we don't use it, and don't evenGuy Harris1-10/+7
need to use its presence in zlib as a proxy for "not the crufty old zlib that comes with some versions of X11". Do, however, check for inflatePrime() there, instead, just in case the crufty old zlib that comes with some versions of X11 lack it; this is to prevent the configure script from assuming a shiny new zlib by testing with a non-X11 program, causing the build to fail when you build Wireshark. svn path=/trunk/; revision=36969
2011-04-29configure: remove test for gzclearerr (not used anymore), add test for ↵Jakub Zawadzki1-2/+2
inflatePrime. svn path=/trunk/; revision=36949
2011-04-22Don't pass -fexcess-precision=fast to clang like we do for gcc.Stephen Fisher1-0/+2
svn path=/trunk/; revision=36828
2011-04-20Oh, dear, autoconf thinks clang is GCC, because it defines __GNUC__.Guy Harris1-3/+22
svn path=/trunk/; revision=36733
2011-04-20Instead of having GCC and CLANG variables, just haveGuy Harris1-20/+54
ac_supports_gcc_flags and ac_supports_W_linker_passthrough flags, the first of which, for now, we set for GCC and clang, and the latter of which we set for GCC, clang, and xlc (probably true for some other compilers as well). Rename AC_WIRESHARK_GCC_LDFLAGS_CHECK to AC_WIRESHARK_LDFLAGS_CHECK, as it's not checking for anything GCC-specific. (Leave AC_WIRESHARK_GCC_CFLAGS_CHECK unrenamed for now, as the flags we test with it are originally GCC flags that clang also supports for GCC compatibility.) Fix some string-equality tests to use = rather than ==; the former is what the test/[ command uses. Don't turn on "-no-cpp-precomp" for clang - it whines if you do. svn path=/trunk/; revision=36731
2011-04-20First cut at support for clang. We may want to have specific items forGuy Harris1-11/+26
"supports GCC-style -W flags", etc., and may want to improve the check for "is this clang", as well as deciding what other stuff should be done if we have clang as well. clang should, I think, largely be gcc-compatible at the command line. svn path=/trunk/; revision=36729
2011-04-10Use AC_SYS_LARGEFILE to turn on large file support on platforms thatGuy Harris1-0/+5
support it. Rename ws_lseek to ws_lseek64, as it should be given a 64-bit offset, and have it use _lseeki64 on Windows, to try to get 64-bit offset support; AC_SYS_LARGEFILE should cause lseek() to support 64-bit offsets on UN*X if possible. svn path=/trunk/; revision=36542
2011-04-101.5.1 → 1.5.2. Reenable Babel.Gerald Combs1-1/+1
svn path=/trunk/; revision=36540
2011-03-20Added a configure message when having c-ares instead of adns.Stig Bjørlykke1-1/+5
svn path=/trunk/; revision=36215
2011-03-08Remove the --enable-new-packet-list option (since the code no longer ↵Jeff Morriss1-13/+0
supports the old packet list) svn path=/trunk/; revision=36164
2011-02-20Renamed x411 to p1, x420 to p22 and s4406 to p772 to be consistentStig Bjørlykke1-3/+3
on the naming policy for X.400 protocols. svn path=/trunk/; revision=36013
2011-02-17On Windows, try putting __declspec(noreturn) in front of declarations ofGuy Harris1-0/+11
routines that don't return. (This requires that some files include config.h to get WS_MSVC_NORETURN declared properly.) svn path=/trunk/; revision=35989
2011-02-11Add a command line argument for the configure script of "--with-gtk3" toStephen Fisher1-0/+16
attempt to compile against GTK+ 3.0 (which can be installed at the same time as GTK+ 2.0). Also place a copy of the autoconf macro for finding GTK+ 3.0 in the aclocal-fallback directory taken from the GTK+ 3.0 distribution. (Note: Wireshark won't finish compiling with GTK+ 3.0 yet...) svn path=/trunk/; revision=35918
2011-02-02Remove duplicate 'asn1/gprscdr/Makefile' entryBill Meier1-1/+2
svn path=/trunk/; revision=35770
2011-02-02Integrate and build the tetra dissector.Anders Broman1-0/+2
svn path=/trunk/; revision=35766
2011-02-02Add the gprscdr Makefile to the list of Makefiles to be generated.Guy Harris1-0/+1
svn path=/trunk/; revision=35765
2011-01-241.5.0 → 1.5.1.Gerald Combs1-1/+1
svn path=/trunk/; revision=35639
2010-12-25Add a comment asking where to check for YACC/Bison and Flex.Guy Harris1-0/+19
svn path=/trunk/; revision=35262
2010-12-24We only need to do AC_PATH_PROG on flex once.Guy Harris1-3/+1
We don't define FLEX_PATH, so no need to AC_SUBST it. svn path=/trunk/; revision=35261
2010-12-16Export only defined symbols from libwsutil.Balint Reczey1-0/+7
Exported symbols are the symbols listed in libwsutil.def, but the symbols defined in not used optional objects are filtered out. svn path=/trunk/; revision=35202
2010-11-26Define HAVE_GTK in config.h when compiling with GTK for the GUIStephen Fisher1-0/+1
svn path=/trunk/; revision=35036
2010-10-03Enable Airpcap build by default: There should be noJörg Mayer1-1/+1
side effects on non-windows systems and it will increase the common source code coverage between Win32 and other systems. svn path=/trunk/; revision=34356
2010-09-28Fix typo reported by Jose Pedro OliveiraJörg Mayer1-1/+1
svn path=/trunk/; revision=34273
2010-09-23Enable Python in HEAD to find problems during testing.Jörg Mayer1-1/+1
svn path=/trunk/; revision=34196
2010-09-22Very old versions of libz (such as the one that comes with Solaris 10) don't ↵Jeff Morriss1-0/+6
have gzclearerr(). Check for that function and only use it if we have it. svn path=/trunk/; revision=34187
2010-09-17Put the definition of NEW_PACKET_LIST into config.h rather than theGuy Harris1-1/+2
Makefile; that will force a rebuild if you configure it on or off (that'll rebuild stuff that doesn't need to be rebuilt, but it'll also rebuild stuff that *does* need to be rebuilt and that wouldn't be rebuilt otherwise). svn path=/trunk/; revision=34145
2010-08-01Use local copy of Wireshark documentation on UNIX if it's available.Balint Reczey1-0/+11
Installation has to be done manually to the location specified by --docdir configure option. svn path=/trunk/; revision=33683
2010-07-15Only link programs that call stuff in Application Services or CoreGuy Harris1-4/+7
Foundation with those frameworks. svn path=/trunk/; revision=33541
2010-07-13From Jan Šafránek:Jaap Keuter1-0/+6
dftest and randpkt are installed during make install, but they are not documented in any man page. This is a start. It's more or less a compilation of information found elsewhere. svn path=/trunk/; revision=33504
2010-06-10Check if /usr/local exists before adding to CFLAGS/CPPFLAGS and LDFLAGS.Stig Bjørlykke1-13/+17
svn path=/trunk/; revision=33205
2010-06-09Build Makefile in asn1/idmp.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=33181
2010-06-071.3.6 -> 1.5.0Gerald Combs1-1/+1
svn path=/trunk/; revision=33138
2010-06-05Back out r33088 for now.Gerald Combs1-1/+0
svn path=/trunk/; revision=33102
2010-06-04From Matt Poduska via bug 1957 (with minor changes):Gerald Combs1-0/+1
New dissector (plugin) to support decode of the EPCglobal Low-Level Reader protocol (see llrp.org for more information). This dissector has passed fuzz testing. svn path=/trunk/; revision=33088
2010-06-01From Michael Bernhard via bug 3398 with minor fixups:Gerald Combs1-0/+1
I've created a ASN.1 dissector for the IEC 61850 Sampled Values protocol. It dissects ethernet frames of the IEC 61850-9-2LE specification form the UCA International User Group. There is also a new TAP for tshark (-R sv) which extracts the important information of the frame and allows to create plots (with external tools) of the sampled values. I've developed under Linux (Ubuntu 8.10) but everything should be in place for successful compilation under Windows. It would be great if this dissector could be included in wireshark. I'm looking forward for your comments. svn path=/trunk/; revision=33039
2010-05-29Put the optional objects in EXTRA..SOURCES instead of EXTRA_DIST.Jeff Morriss1-48/+17
Put the optional objects in a _DEPENDENCIES rule so they actually get built when needed. Use libtool to make these objects. Remove AC variables that are no longer needed. svn path=/trunk/; revision=33017
2010-05-25From H.sivank: GtkOSXApplication support.Guy Harris1-23/+30
Call the various flavors of OS X integration just "OS X integration", not anything with "IGE" in it - it appears that, in some places, "ige-mac-integration" refers only to the older Carbon-based functions, although the library still appears to be called -ligemacintegration. Update the URLs for the information about the OS X integration libraries. Clean up help message for --with-pcap-remote. Clean up white space a bit. Speaking of white space, it's "Mac OS X", not "MacOS X". svn path=/trunk/; revision=32941
2010-05-18Add epan/dissectors/dcerpc/ and epan/dissectors/pidl/ to the source distributionJeff Morriss1-0/+2
svn path=/trunk/; revision=32879
2010-05-15- Move cmake options into their own file, making it easier toJörg Mayer1-0/+2
use a locally modified version of the stuff - Some (still preliminary) CPack changes - Add -fexcess-precision=fast (configure.in and CmakeLists.txt) to the compileflags (new gcc-4.5 feature to maintain backward compatibility with gcc-4.4 and IMO we don't need the slower but more exact implementation gcc 4.5 offers. svn path=/trunk/; revision=32823
2010-05-051.3.5 -> 1.3.6.Gerald Combs1-1/+1
svn path=/trunk/; revision=32667
2010-04-14Added PKIXAttributeCertificate (RFC3281).Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=32460
2010-04-09Use a 64-bit number to store the content length. This fixes:Jeff Morriss1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1958 Of course this doesn't mean we can reassemble that much data. svn path=/trunk/; revision=32433
2010-04-08Add --enable-setcap-install and --with-dumpcap-group.Gerald Combs1-1/+57
svn path=/trunk/; revision=32421
2010-04-05Disable the possible use of 'links' to generate release-notes.txtBill Meier1-3/+5
"Fixes" Bug #4631. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4631 svn path=/trunk/; revision=32389
2010-03-311.3.4 -> 1.3.5.Gerald Combs1-1/+1
svn path=/trunk/; revision=32345
2010-03-16This adds a new dissector plugin: INTERLINK. This protocol is used inUwe Girlich1-0/+1
(real and simulated) BMW cars for all kinds of gadget communication. My plugin only dissects the high level infrastructure and not any particular messages. It uses a heuristic dissector to detect INTERLINK packets. svn path=/trunk/; revision=32202
2010-02-28From Erwin van Eijk:Anders Broman1-0/+1
Add ETSI ts101671 dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4543 I added dissection of UmtsQos, IMSevent, LDIevent, TARGETACTIVITYMONITOR-1 TARGETACTIVITYMONITORind, TARGETCOMMSMONITORind, TTRAFFICind, CTTRAFFICind And used the original HI2Operations ASN1 file.l svn path=/trunk/; revision=32053
2010-02-26Handle C++ code, such as the wsgd plugin.Guy Harris1-2/+11
svn path=/trunk/; revision=32018
2010-02-25Make asn1/kerberos/Makefile and asn1/rua/Makefile as well.Guy Harris1-0/+2
svn path=/trunk/; revision=31998