aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
2011-11-081.7.0 → 1.7.1.Gerald Combs1-1/+1
svn path=/trunk/; revision=39769
2011-11-08Add SBc Application Part (SBc-AP) to build.Anders Broman1-0/+1
svn path=/trunk/; revision=39758
2011-11-07Change the use of threads from "mostly always, depending on yourGerald Combs1-9/+0
configure options and Gtk+ and GLib versions" to "always". svn path=/trunk/; revision=39751
2011-10-23From Pascal Quantin.Anders Broman1-0/+1
The attached patch adds the LPPa (LTE Positioning Protocol A) dissector as specified in 3GPP 36.455 release 9.4.1. (Part 2) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6478 svn path=/trunk/; revision=39516
2011-10-16From Pascal Quantin.Anders Broman1-0/+1
LTE Positioning Protocol dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6460 svn path=/trunk/; revision=39436
2011-10-11Make asn1/lcsap/MakefileStig Bjørlykke1-0/+1
svn path=/trunk/; revision=39373
2011-09-30Microsoft Credential Security Support Provider (CredSSP) support. Graeme Lunt1-0/+1
Used by direct approach RDP for NTLMSSP authentication under SSL. svn path=/trunk/; revision=39196
2011-09-25Get rid of (hopefully) all configure options to enable MAIN_MENU_USE_UIMANAGERJörg Mayer1-8/+0
as it is the only option left. svn path=/trunk/; revision=39138
2011-09-21Add asn/t124/Makefile to configure.in and remove it from the repository.Graeme Lunt1-0/+1
svn path=/trunk/; revision=39069
2011-08-31Second try to move crc routines to libwsutil.Stig Bjørlykke1-1/+0
This time keep the tvb routines in epan. Now we can use common crc routines outside epan. svn path=/trunk/; revision=38810
2011-08-30Revert r38800, as the crc routines contains some tvb functions.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=38803
2011-08-30Move all crc routines to libwsutil.Stig Bjørlykke1-1/+0
This way we can use the crc routines in wiretap. svn path=/trunk/; revision=38800
2011-08-29Fix a commentJörg Mayer1-1/+1
svn path=/trunk/; revision=38779
2011-08-23Remove support for libpcre, we use GRegex in GLib.Stig Bjørlykke1-40/+1
svn path=/trunk/; revision=38683
2011-08-22make MAIN_MENU_USE_UIMANAGER the default.Anders Broman1-2/+2
svn path=/trunk/; revision=38657
2011-08-18Change || in an "if test" statement to "-o"Stephen Fisher1-1/+1
svn path=/trunk/; revision=38611
2011-08-18Get --enable-ui-manager working.Michael Tüxen1-1/+1
svn path=/trunk/; revision=38609
2011-08-18When building with GTK3 we *must* use the ui-manager interface,Jörg Mayer1-8/+8
the ItemFactory stuff doesn't exists any more. svn path=/trunk/; revision=38607
2011-08-17Always build with -DGTK_DISABLE_DEPRECATED. The files thatJörg Mayer1-3/+1
fail when built in specific configurations will disable this option when required. svn path=/trunk/; revision=38588
2011-08-11Use '-D_FORTIFY_SOURCE=2' when compiling with GCC or CLang.Bill Meier1-0/+7
For info see: http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html svn path=/trunk/; revision=38467
2011-08-11Add -DG_DISABLE_SINGLE_INCLUDES to CFLAGSBill Meier1-2/+8
Also: Move the addition of -DG_DISABLE_DEPRECATED to CFLAGS so that it actually takes effect. svn path=/trunk/; revision=38466
2011-08-09Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5608 :Jeff Morriss1-1/+1
getopt() can/should normally be found in unistd.h, so: - When testing for getopt(), define that we HAVE_GETOPT instead of HAVE_GETOPT_H (to avoid confusion). - Don't attempt to include getopt.h: not all OS's have it (for example, Solaris 9 does not). - (All the places which need getopt already include unistd.h (if we have it).) If this breaks things on some OS, we might need (a real) HAVE_GETOPT_H check. svn path=/trunk/; revision=38437
2011-08-08MAIN_MENU_USE_UIMANAGER is also used in some includes, not onlyJörg Mayer1-1/+3
in .c files, so the aproach to #undef GTK_DISABLE_DEPRECATED was wrong. Only enable GTK_DISABLE_DEPRECATED if MAIN_MENU_USE_UIMANAGER is defined. svn path=/trunk/; revision=38420
2011-08-08GTK3 stuff:Jörg Mayer1-3/+4
- Update Status file - configure.in: start GSEALing with 2.20 and not 2.22 - configure.in/config.nmake/CMakeLists.txt: enable GTK_DISABLE_SINGLE_INCLUDE and GTK_DISABLE_DEPRECATED - menus.c: If not building with UI_MANAGER, disable GTK_DISABLE_DEPRECATED svn path=/trunk/; revision=38404
2011-08-07mate_grammar.lemon:Jörg Mayer1-0/+2
- Fix a bug my previous patch introduced. mate/: - Unset G_DISABLE_DEPRECATED for the mate files. CMakeLists.txt configure.in: - Build with -DG_DISABLE_DEPRECATED so further usage of deprecated glib functions will be detected. svn path=/trunk/; revision=38393
2011-08-04As suggested by Anders: only compile with GSEAL_ENABLE if we're using GTK ↵Jeff Morriss1-7/+7
2.22 or higher (and not GTK3) svn path=/trunk/; revision=38341
2011-08-03'-Wno-error=unused-but-set-parameter' not req'd since no such warnings in ↵Bill Meier1-1/+0
Wireshark compile. svn path=/trunk/; revision=38318
2011-08-02For now: treat GCC 4.6 'unused-but-set' reports as just warnings (i.e., when ↵Bill Meier1-1/+2
-Werror). GCC 4.6 has added 'unused but set' reports so this change allows builds to proceed without erroring out for those building from SVN with GCC 4.6. (AFAIK Wireshark source distributions do not enable -Werror). This change can be removed (at least globally) once the code as been fixed. svn path=/trunk/; revision=38311
2011-07-31Configuring with --enable-ui-manager would not work - fix this.Jörg Mayer1-1/+1
svn path=/trunk/; revision=38287
2011-07-29Print a more correct error message when missing gtk3.Stig Bjørlykke1-1/+5
This fixes bug 6181. svn path=/trunk/; revision=38262
2011-07-29Try build with GSEAL_ENABLE if not gtk3 again.Stig Bjørlykke1-0/+4
svn path=/trunk/; revision=38261
2011-07-29Removed building with GSEAL_ENABLE, does not work yet.Stig Bjørlykke1-4/+0
svn path=/trunk/; revision=38256
2011-07-29Build with GSEAL_ENABLE if not gtk3.Stig Bjørlykke1-0/+4
svn path=/trunk/; revision=38255
2011-07-22Back out my last changes to configure.in - they broke too muchJörg Mayer1-30/+31
svn path=/trunk/; revision=38168
2011-07-22When moving stuff around, move it all.Jörg Mayer1-4/+3
svn path=/trunk/; revision=38167
2011-07-22Fix the order of tests: the test for wireshark needs to run afterJörg Mayer1-30/+30
the test for gtk. svn path=/trunk/; revision=38163
2011-07-20Regularize style a bit in help messages.Guy Harris1-43/+43
Clean up capitalization. Fix a comment. svn path=/trunk/; revision=38130
2011-07-18Get --enable-ui-manager working.Michael Tüxen1-2/+2
svn path=/trunk/; revision=38084
2011-07-18Add option --enable-uimanager to mimic cmake -DUI_MANAGER=ONJörg Mayer1-0/+12
svn path=/trunk/; revision=38081
2011-07-16Use threads per default. Same as on Windows.Michael Tüxen1-2/+2
svn path=/trunk/; revision=38060
2011-07-15Ensure that USE_THREADS is defined when --enable-threads is specified.Michael Tüxen1-1/+3
svn path=/trunk/; revision=38046
2011-07-11Make the minimum GLib version 2.14 and the minimum GTK+ version 2.12.Gerald Combs1-45/+11
svn path=/trunk/; revision=37967
2011-06-28Replace all strerror() with g_strerror().Stig Bjørlykke1-10/+0
Remove our local strerror implementation. Mark strerror as locale unsafe API. This fixes bug 5715. svn path=/trunk/; revision=37812
2011-06-17Make pcap-ng the default. Add a compile-time option to prefer pcap-ng orGerald Combs1-0/+9
pcap. Add a "-P" capture option which tries to use pcap instead of pcap-ng ("-P" seemed to be the best option but we may want to use a different letter). Update the documentation and release notes. svn path=/trunk/; revision=37696
2011-06-11Do the Python embedding similarly to other "default = yes, if available"Guy Harris1-23/+38
items. Add some quoting to the zlib tests, just in case the argument contains white space. Clean up capitalization of Lua and Python. Link programs that use libwireshark with the Python libraries, and build Epan with the Python cflags. svn path=/trunk/; revision=37652
2011-06-08From Michael Mann:Anders Broman1-1/+0
Make interlink built-in dissector (from plugin). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6005 svn path=/trunk/; revision=37610
2011-06-08The SERCOS III dissector is now built-in.Guy Harris1-1/+0
svn path=/trunk/; revision=37605
2011-05-31Remove HAVE_AIRPDCAPAnders Broman1-5/+0
svn path=/trunk/; revision=37496
2011-05-27AirPcap is disabled by default; fix the help text to reflect that fact.Jeff Morriss1-2/+2
svn path=/trunk/; revision=37423
2011-05-25Copy-paste error.Anders Broman1-1/+1
svn path=/trunk/; revision=37394