aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
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
2010-02-25Generate asn1/hnbap/Makefile.Guy Harris1-0/+1
svn path=/trunk/; revision=31997
2010-02-19There's an echo in here....Guy Harris1-1/+1
svn path=/trunk/; revision=31918
2010-02-18To check for GLib 2.14.0 or later, just check with pkg-config, don't useGuy Harris1-26/+22
AM_PATH_GLIB_2_0. We don't need all the mechanism of AM_PATH_GLIB_2_0 to check for pkg-config sanity etc., as we've already used AM_PATH_GLIB_2_0 and have thus already done that, and not doing it again 1) means we don't get a bunch of configure-script whining if we have GLib >= 2.4 and GLib < 2.14; 2) means we can get rid of stuff to compensate for AM_PATH_GLIB_2_0 failing with GLib < 2.14. svn path=/trunk/; revision=31912
2010-02-18Fix/update some comments.Guy Harris1-7/+36
Save the setting of GLIB_LIBS before testing for GLib 2.14-or-later, and restore it afterwards, in case the test fails; that might fix the Solaris build fails we're having (the Solaris buildbot has an older version of GLib). svn path=/trunk/; revision=31910
2010-02-15Check for GLib 2.14 and gmodule support no matter what.Gerald Combs1-2/+3
svn path=/trunk/; revision=31881
2010-02-13Don't use PCRE if we have GRegex.Gerald Combs1-5/+15
svn path=/trunk/; revision=31871
2010-02-111.3.3 -> 1.3.4.Gerald Combs1-1/+1
svn path=/trunk/; revision=31865
2010-02-10Use automake to build things in docbook/ .Jeff Morriss1-0/+17
This at least gets the docbook source distributed, as requested in: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3871 Still to do: 1) get out-of-source-tree builds working 2) automatically check that everything is distributed with distcheck (requires (1) but it may also require building the docbook directory as part of "make all") 3) (optional) use automake rules to actually build the stuff (currently Makefile.am is basically some automake stuff wrapped around standard Makefile rules. Could this done better?) svn path=/trunk/; revision=31858
2009-12-22automake 1.11 has macros built in that make compilation muchJörg Mayer1-0/+3
less verbose, i.e. only shows something like CC libdfilter_la-sttype-string.lo and CCLD libdfilter.la Warnings are still shown, which makes warnings stick out more prominently than before. Offer that option if present. This will provide 2 new configure arguments: --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0') The current default is disable-silent-rules to make the default behaviour match the current one. If you like that feature, maybe we should make silent compilation the new default. svn path=/trunk/; revision=31346
2009-12-18If we don't have PCRE and we do have GLib >= 2.14, use GRegexes for theGerald Combs1-0/+1
"matches" operator. svn path=/trunk/; revision=31302
2009-12-11Add the time zone abbreviation to the result of abs_time_to_str() andGuy Harris1-0/+3
abs_time_secs_to_str(). svn path=/trunk/; revision=31234
2009-11-24Switch to .tar.bz2 for the "dist" target since that's what most peopleGerald Combs1-1/+1
download. svn path=/trunk/; revision=31068
2009-11-24Switch back to normal versioning. Bump the version to 1.3.3.Gerald Combs1-1/+1
svn path=/trunk/; revision=31064
2009-11-07Add a few more optional compiler warnings and some (commented out)Jörg Mayer1-0/+5
ideas for linker flags. svn path=/trunk/; revision=30853
2009-10-29Bump development version.Anders Broman1-1/+1
svn path=/trunk/; revision=30750
2009-10-16Putting the AC_CANONICAL_xxx macro(s) *after* AC_INIT seems to work, andGuy Harris1-3/+14
could fix cross-compilation problems, according to Jeff Morriss, and "make dist" seems to build a ustar archive after we do that, so give that a try. (I don't have any cross-compilers handy to test whether it fixes cross-compilation or not.) svn path=/trunk/; revision=30586
2009-10-10ns-cert-ext -> ns_cert_exts to make directory name consistent with filenamesKovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=30478
2009-10-10Update configure to reflect new asn1 folder namesKovarththanan Rajaratnam1-5/+5
svn path=/trunk/; revision=30475
2009-10-06Invert check for getopt: NEED_GETOPT_H -> HAVE_GETOPT_HStig Bjørlykke1-6/+8
Rename getopt.[ch] -> wsgetopt.[ch] to avoid name collision. svn path=/trunk/; revision=30370
2009-09-26Remove tpg from configure. It's not ready to be built by the massesKovarththanan Rajaratnam1-1/+0
svn path=/trunk/; revision=30161
2009-09-25Try to add tpg, but it seems it doesn't build with autofoo either.Jörg Mayer1-0/+1
svn path=/trunk/; revision=30151
2009-09-20Bump version number after release of first development snapshot.Jaap Keuter1-1/+1
svn path=/trunk/; revision=30007
2009-09-17Fix handling of new-packet-list.Michael Tüxen1-1/+1
svn path=/trunk/; revision=29965
2009-09-17Make the new packet list the default build choice.Anders Broman1-2/+2
svn path=/trunk/; revision=29964
2009-09-02Add --enable-new-packet-list to configure script. DefaultMichael Tüxen1-0/+12
is no for now. Should be kept in sync with the corresponding Windows switch. svn path=/trunk/; revision=29676
2009-08-31Remove strcasecmp. We use g_ascii_strcasecmp exclusivelyKovarththanan Rajaratnam1-9/+0
svn path=/trunk/; revision=29643
2009-08-07- Add an AC macro to test linker flags.Jörg Mayer1-0/+13
- Test whether the linker supports --as-needed and if so, adds it to LDFLAGS svn path=/trunk/; revision=29327
2009-07-02Pull mkstemp() into tempfile.c. That's the only place we use it now, andGerald Combs1-8/+1
it's arguably the only place we _should_ use it. Add create_tempdir() to tempfile.c and use it to create a temp directory for IP maps. This should fix bug 3530. (This still doesn't work on IE 8 / Vista here. IE gives an access denied error in OpenLayers.js, but this is a separate issue). svn path=/trunk/; revision=28920
2009-06-28Detect gnutls via pkg-config instead of the deprecated libgnutls-config.Balint Reczey1-7/+3
Based on patch from Andreas Metzler. This fixes bug 3627. svn path=/trunk/; revision=28874
2009-06-28Strictly require flex instead of allowing lex, too.Balint Reczey1-4/+4
It compiles now. This fixes bug 1641. svn path=/trunk/; revision=28867
2009-06-27Revert commit 28854.Balint Reczey1-4/+5
svn path=/trunk/; revision=28855
2009-06-27Strictly require flex instead of allowing lex, too.Balint Reczey1-5/+4
svn path=/trunk/; revision=28854
2009-06-22Add -Wextra (ok, it was already there as -W) and -Wlogical-opJörg Mayer1-0/+2
svn path=/trunk/; revision=28806
2009-06-03Use liblua by default, if available.Stig Bjørlykke1-3/+3
svn path=/trunk/; revision=28621
2009-05-31Adjusted the python binding message from configure.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=28544
2009-05-29python binding for wireshark (first commit)Sebastien Tandel1-0/+28
* ability to write dissectors with python for wireshark. documentation (http://wiki.wireshark.org/Python) svn path=/trunk/; revision=28529
2009-05-26Move the trunk to 1.3.Gerald Combs1-1/+1
svn path=/trunk/; revision=28495
2009-05-12Lua support is no plugin.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=28333
2009-05-05Goal: Make the airpcap GUI available on Linux.Jörg Mayer1-0/+8
Step1: Run "configure --enable-airpcap" and see what fails. svn path=/trunk/; revision=28285
2009-04-22Bleah, some dissectors still insist on using structures and sizeof andGuy Harris1-1/+4
offsetof, so turn off 64-to-32 warnings for now. svn path=/trunk/; revision=28118