aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
AgeCommit message (Collapse)AuthorFilesLines
2011-06-22rev 37741 added tap-rtspstat.c to Makefile.common.Jörg Mayer1-0/+1
svn path=/trunk/; revision=37745
2011-06-17Add configure options to make change the default file formatJörg Mayer1-0/+4
from pcap-ng to pcap. Add a comment that GTK3 doesn't build yet. svn path=/trunk/; revision=37701
2011-06-08Add GTK3 cmake options. It doesn't build, just like its configure pendant.Jörg Mayer1-5/+15
svn path=/trunk/; revision=37623
2011-06-08From Roland Knall via bug 6007:Stig Bjørlykke1-1/+0
Remove plugins/interlink from CMake. svn path=/trunk/; revision=37614
2011-06-07Move packet-sercosiii.c to be a builtin dissector.Anders Broman1-1/+0
svn path=/trunk/; revision=37597
2011-05-19From Dirk Jagdmann via bug 5875:Gerald Combs1-0/+1
My attachment adds a link to a XSLT file to the preamble of the PDML. The XSLT will transform the PDML to a HTML page, and the HTML page features a look similar to Wireshark. See http://cubic.org/~doj/ebay/a.pdml for an example. The patch also contains a small perl program which converts the Wireshark colortable into javascript code which is used in the XSLT file. If you want to use a different color scheme you would execute the perl program and insert the generated javascript function into your XSLT file. To view the HTML you could either place the PDML and XSLT file on your webserver and verify that your webserver sends the PDML file as "text/xml". Then your webbrowser will find the linked XSLT file, download that as well and convert the PDML to HTML on the fly. You could also use an XSLT processor like xsltproc to convert the PDML and XSLT into a static HTML file. From me: Minor fixups. svn path=/trunk/; revision=37298
2011-05-19Update CMakeLists to follow commit 37219.Jörg Mayer1-0/+4
Remove a duplicate check in configure.in svn path=/trunk/; revision=37277
2011-05-12Play catch up with recent configure.in changes:Jörg Mayer1-0/+6
- Link dumpcap (and only dumpcap) against gthread - gtk/gsm_a_stat.c and gtk/menus.c are dirty when configured with UI_MANAGER=1 - Add support run "cmake ... -DWANT_PACKET_EDITOR=1 ..." svn path=/trunk/; revision=37103
2011-04-27Add frame_data_sequence.c.Guy Harris1-0/+1
svn path=/trunk/; revision=36885
2011-04-11Add conversation tracking and tshark tap support to ICMPv6. Fixes bug 5810.Chris Maynard1-0/+1
TODO: Add a Wireshark tap or look into possibly using the stats tree instead. Also, like ICMP, the ICMPv6 payload appears to carry the sender's timestamp, so it might be possible to make use of this information to estimate the total SRT. (See bug 5770 for more details.) svn path=/trunk/; revision=36561
2011-04-05Add ICMP tap support, and add a tshark tap to measure such things as:Chris Maynard1-0/+1
* Number of ICMP echo requests, replies, lost replies and percent loss. * Min, Max, Average SRT (Service Response Time), and standard deviation. (This is my first tap, so hopefully I didn't miss something, but we'll see ...) TODO: Add a Wireshark tap. svn path=/trunk/; revision=36480
2011-02-21From Roland Knall:Jaap Keuter1-0/+3
WS_MSVC_NORETURN is undeclared under a non-Windows operating system, which breaks compilation in the files epan/except.c and dumpcap.c as well as any file including epan/except.h svn path=/trunk/; revision=36023
2011-01-18dumpcap failed to link - add glib2 and wsutil libraries to fix this.Jörg Mayer1-0/+2
svn path=/trunk/; revision=35575
2011-01-04Free dumpcap from linking to wiretap.Jaap Keuter1-1/+0
svn path=/trunk/; revision=35353
2010-11-28u3.c has moved.Jörg Mayer1-0/+1
svn path=/trunk/; revision=35057
2010-11-16First try to install docbook stuff as well - not yet workingJörg Mayer1-0/+1
svn path=/trunk/; revision=34896
2010-10-02- Pod stuff is independent of the guides, so check/useJörg Mayer1-5/+3
it indepently. - AND needs to be in caps. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4879 svn path=/trunk/; revision=34325
2010-10-01Fix for Jörg Mayer1-2/+5
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4879 where the build would fail if no gtk2 development files were found. svn path=/trunk/; revision=34308
2010-10-01- Reorder how packagetests are runJörg Mayer1-21/+29
- Add packet-reload.c - Make most packages not-required (not tested) - Does *not* (yet) add an optional/whatever case to enable_ svn path=/trunk/; revision=34307
2010-09-28- Reset a few more variables used in FindXYZ scripts.Jörg Mayer1-4/+7
- README.cmake: small update. - Set a variable before using it for installation. svn path=/trunk/; revision=34274
2010-09-25- FindGLIB2.cmake updates fromJörg Mayer1-1/+1
http://www.opensync.org/browser/branches/3rd-party-cmake-modules/modules + split out FindGMODULE2.cmake + contains /sw/... by default + supposedly tested on OSX - Disable pcre for cmake builds by default, gregex should be picked up automatically if glib2 is not too old. Should you have trouble linking due to some libgmodule... stuff undefined, please add "${GMODULE2_LIBRARIES}" after "${GLIB2_LIBRARIES}" an report back. svn path=/trunk/; revision=34248
2010-09-24Actually do what I said I did in the previous checkin.Guy Harris1-1/+1
svn path=/trunk/; revision=34244
2010-09-24Plugins are not shared libraries, so:Guy Harris1-5/+1
1) don't set thei SOVERSION - run-time-loaded modules don't have an SOVERSION; 2) build them with link mode MODULE, not SHARED, on all platforms. (Fixing 1) also fixes the problem with building them as MODULE on OS X.) svn path=/trunk/; revision=34243
2010-09-23Undo some part of Jörg Mayer1-13/+6
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=34224 This fix is wrong. We need to find out why this fails and correct it in svn path=/trunk/; revision=34226
2010-09-23H.sivank:Jörg Mayer1-4/+9
Cmake fixes. svn path=/trunk/; revision=34225
2010-09-23Some CMake fixes from H.sivank:Stig Bjørlykke1-12/+18
- Apple gcc does not like "-Wl,--as-needed". - Fix plugins link step on OSX. - Put AUTHORS-SHORT, AUTHORS-SHORT-FORMAT and wireshark.pod in build directory. svn path=/trunk/; revision=34224
2010-09-23Copy behaviour ofJörg Mayer1-1/+0
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=34145 to cmake. svn path=/trunk/; revision=34205
2010-09-23H. Sivank <hsivank@gmail.com>Jörg Mayer1-10/+10
I try to configure Wireshark with cmake on macosx 10.6. It fails with : set_target_properties called with incorrect number of arguments. Attached a patch to fix this issue. svn path=/trunk/; revision=34201
2010-09-23Try to add support to learn the HTML_VIEWER variable and the DOC_DIR ↵Jörg Mayer1-0/+9
variables from the environment - not yet working svn path=/trunk/; revision=34200
2010-09-18From Cal Turney via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5223 :Jeff Morriss1-0/+1
I would like to contribute iSCSI SRT tap, 'tap-scsistat.c' for tshark. The output exactly matches that of the Wireshark's iSCSI(disk) SRT dialog. From me: a couple of small changes to make it compile without warnings. svn path=/trunk/; revision=34152
2010-09-10Use absolute paths in link_directories.Stig Bjørlykke1-5/+5
svn path=/trunk/; revision=34098
2010-07-17- Copy over from Makefile.am: dumpcap doesn't need to linkJörg Mayer1-2/+1
in libgcrypt and gnutls. - capinfos has a dependency on svnversion.h svn path=/trunk/; revision=33559
2010-07-15Fix cmake build for wireshark-filters.Jörg Mayer1-1/+1
svn path=/trunk/; revision=33546
2010-07-15Don't include the filter list (which is now over 16MB) in theGerald Combs1-14/+0
wireshark-filter man page. Point to other sources for the list instead. svn path=/trunk/; revision=33539
2010-07-14- Update todo listJörg Mayer1-0/+8
- Add dftest and randpkt manpages to sync with autofoo svn path=/trunk/; revision=33521
2010-06-03- Add tap-sv.c and packet-sv.c to the list of files to buildJörg Mayer1-29/+30
- Whitespace fixes - Add Fedora 64 bit to the list of platforms where cmake should work svn path=/trunk/; revision=33073
2010-05-28Move some code (including the optional objects) into libwsutilJeff Morriss1-7/+0
svn path=/trunk/; revision=33012
2010-05-24At least according to the CMake 2.6 documentation,Guy Harris1-4/+0
CHECK_VARIABLE_EXISTS() can be used to check for C variables; use that to check for pcap_version. svn path=/trunk/; revision=32938
2010-05-24- Add a comment about the magic in the FindXXX.cmake filenames.Jörg Mayer1-0/+11
- Fix for https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4786 Define HAVE_PCAP_VERSION if HAVE_PCAP_LIB_VERSION is set. svn path=/trunk/; revision=32936
2010-05-19Commit 32350 replaced the self written FindZ.cmake by cmakesJörg Mayer1-7/+11
FindZLIB.cmake. What it didn't do was do adapt the magic names that are derived from the name of the FindXXX.cmake script. Fix that. Also add $Id$ to the FindZLIB.cmake script. svn path=/trunk/; revision=32899
2010-05-15text2pcap_scanner.l does not compile without warningsJörg Mayer1-4/+6
on my system - add it to the non-clean file list. svn path=/trunk/; revision=32825
2010-05-15- Move cmake options into their own file, making it easier toJörg Mayer1-36/+3
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-04-01Sync ZLIB from CMake trunkKovarththanan Rajaratnam1-3/+3
svn path=/trunk/; revision=32350
2010-03-18cmake changes:Jörg Mayer1-6/+30
- Add checking for linker flags - Install plugins with the name including the Wireshark version. This will make it easier to find matching plugin versions if files get just copied over. svn path=/trunk/; revision=32231
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-03-07- Derive Wireshark version from configure.in for now.Jörg Mayer1-1/+39
Allow to overide that version in CMakefile.txt - Minor update to README.cmake - Turn off GTK_DEBUG svn path=/trunk/; revision=32139
2010-03-06From Andrej Kuehnal:Anders Broman1-0/+1
New feature: extract specified diameter AVPs from large capture files. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4560 svn path=/trunk/; revision=32132
2010-03-04Copy over the introduction of Makefile.common changeJörg Mayer1-3/+15
Replace FindGTK2 by version included in cmake 2.8.x svn path=/trunk/; revision=32119
2010-02-25Almost working out-of-tree builds for the documentation,Jörg Mayer1-4/+7
with a few hacks right now: - The tip.png, warning.png and note.png images are missing from the pdfs and I have no idea how to tell fop how to find them. - Disabling/enabling building the guides via option currently doesn't work (probably too many macros :-), so comment out the subdir instead. - Right now, in order to build the devleopers guide we need to do the following in the source docbook directory: touch wsdg_graphics/toolbar/dummy.dummy Apart from these: The build works with a pristine docbook dir (svn status --no-ignore). svn path=/trunk/; revision=32004
2010-01-14Set correct locale in make-version.pl instead of in Makefiles.Stig Bjørlykke1-12/+18
Added back add_custom_command for svnversion.h. Removed unnecessary text2pcap_CLEAN_FILES. Fix indent for ps.c command. svn path=/trunk/; revision=31525