aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/CMakeLists.txt
AgeCommit message (Collapse)AuthorFilesLines
2013-11-17Move the epan/filesystem.c routines to wsutil; they're not specific toGuy Harris1-0/+15
packet dissection, they're specific to the entire Wireshark suite of programs. svn path=/trunk/; revision=53377
2013-11-16Move bitswap.[ch] from epan to wsutil.Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53365
2013-11-09Move adler32 from epan/ to wsutil/Jakub Zawadzki1-0/+1
The same like done for crc* svn path=/trunk/; revision=53190
2013-11-09Rename swar_count_bits() to ws_count_ones()Jakub Zawadzki1-1/+0
Try to make ws_count_ones() inline function. svn path=/trunk/; revision=53178
2013-10-29Revert part of 52896 and (for now) all of 52935. As Jeff pointed out,Gerald Combs1-0/+1
the PortableApps version relies on U3_-prefixed environment variables. svn path=/trunk/; revision=52941
2013-10-27Remove U3 code and packaging.Gerald Combs1-1/+0
svn path=/trunk/; revision=52896
2013-10-19Minor refactoring in CMake ABI dump generationBalint Reczey1-3/+1
svn path=/trunk/; revision=52689
2013-10-19Set and use TMPDIR for ABI dump generation when using CMakeBalint Reczey1-4/+4
svn path=/trunk/; revision=52688
2013-10-15Factor out common parts of ABI checks to UseABICheck.cmakeBalint Reczey1-15/+3
svn path=/trunk/; revision=52614
2013-10-13Add CMake properties to targets so that they are logically organised when ↵Graham Bloice1-0/+4
using a Visual Studio solution. Add CMake properties to group the source files in epan into logical blocks when using a Visual Studio solution. svn path=/trunk/; revision=52580
2013-10-06config.h.win32 used another solutionJörg Mayer1-1/+0
svn path=/trunk/; revision=52410
2013-10-05editcap and capinfos compile now with cmakeJörg Mayer1-6/+7
svn path=/trunk/; revision=52382
2013-10-04libwsutil needs to link against libgmodule2Jörg Mayer1-0/+1
svn path=/trunk/; revision=52371
2013-08-26From Jiri Engelthaler viaEvan Huus1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9055 Add support for bitmask set for signed integer types. svn path=/trunk/; revision=51522
2013-08-01Move a bunch of the crypt modules and pint.h into wsutil.Jeff Morriss1-0/+8
This means wsutil now links against libcrypt. Protect a bunch of the crypt header files from multiple inclusion. svn path=/trunk/; revision=51100
2013-07-22Looks like building with -Werror in wsutil was forgotten withJörg Mayer1-0/+12
cmake. svn path=/trunk/; revision=50788
2013-07-16Move u3.{h,c} and g711.{h,c} into wsutil.Jeff Morriss1-0/+2
Project g711.h against multiple inclusion and add C++ compatibility wrapper. svn path=/trunk/; revision=50654
2013-07-16Move strnatcmp.{h,c} from epan into wsutil: there's nothing epan-specificJeff Morriss1-0/+1
there and moving it avoids having to recompile the file for use in editcap and mergecap (which don't link against libwireshark). svn path=/trunk/; revision=50650
2013-07-15Add report_err.c to cmake build.Jeff Morriss1-0/+1
svn path=/trunk/; revision=50600
2013-06-26Move tempfile.{h,c} into wsutil.Jeff Morriss1-0/+1
svn path=/trunk/; revision=50163
2013-06-26As pointed out by Guy: timestats uses packet_info so it belongs in epanJeff Morriss1-1/+0
not wsutil. svn path=/trunk/; revision=50159
2013-06-25Move a couple of time-related modules into wsutil.Jeff Morriss1-0/+2
A bunch of files didn't really need to include these header files so remove the include line rather than changing it. svn path=/trunk/; revision=50154
2013-04-24dumpabi: This would create the directories in the sourcedir insteadJörg Mayer1-1/+1
of the binary dir. Fixed that. NOTE: It fails with and without this patch for out of tree builds: jmayer@egg:~/work/wireshark/svn/build/qt-gtk3> make dumpabi [ 1%] Built target wsutil [ 1%] Generating libwsutil.abi.tar.gz ERROR: can't find modules cp: cannot stat `abi_dumps/libwsutil/libwsutil_*': No such file or directory make[3]: *** [wsutil/libwsutil.abi.tar.gz] Error 1 make[2]: *** [wsutil/CMakeFiles/dumpabi-libwsutil.dir/all] Error 2 make[1]: *** [CMakeFiles/dumpabi.dir/rule] Error 2 make: *** [dumpabi] Error 2 jmayer@egg:~/work/wireshark/svn/build/qt-gtk3> svn path=/trunk/; revision=49014
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey1-3/+0
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2013-02-28Export libwsutil symbols using WS_DLL_PUBLIC defineBalint Reczey1-1/+5
This change replaces *.def and *.sym file usage following the guideline at http://gcc.gnu.org/wiki/Visibility svn path=/trunk/; revision=47938
2013-02-25ABI dumps don't have to depend on config.h directlyBalint Reczey1-1/+1
They depend on libs which need config.h already. svn path=/trunk/; revision=47883
2013-02-25Add dumpabi targets to CMake buildsBalint Reczey1-1/+22
Also update automake generated targets to match CMake generated ones svn path=/trunk/; revision=47879
2013-02-24Generate abi-descriptor.xml-s in CMake buildsBalint Reczey1-0/+7
svn path=/trunk/; revision=47865
2013-02-23Set library versions in CMake buildsBalint Reczey1-0/+1
svn path=/trunk/; revision=47848
2013-01-15Add crash_info.cGuy Harris1-0/+1
svn path=/trunk/; revision=47107
2012-08-08From Jacob Nordgren and Rishie Sharma:Anders Broman1-0/+1
Add CRC11 algorithms svn path=/trunk/; revision=44346
2012-08-02Back out an inadvertent change in r44194.Gerald Combs1-2/+1
svn path=/trunk/; revision=44210
2012-08-01Move utf8_entities.h to the "ui" directory. Separate packet informationGerald Combs1-1/+2
items with MIDDLE DOTs. svn path=/trunk/; revision=44194
2012-07-12Add crc7 calculation abillity.Anders Broman1-0/+1
svn path=/trunk/; revision=43680
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-11-03From Roland Knall via bug 6539:Stig Bjørlykke1-0/+1
Implementing generic CRC8 and CRC16 functions for openSAFETY in wsutil. svn path=/trunk/; revision=39726
2011-09-12Move airpcap_wep.c to /wsutil CMakefile changesAnders Broman1-0/+1
svn path=/trunk/; revision=38973
2011-08-31Second try to move crc routines to libwsutil.Stig Bjørlykke1-0/+6
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-7/+0
svn path=/trunk/; revision=38803
2011-08-30Move all crc routines to libwsutil.Stig Bjørlykke1-0/+7
This way we can use the crc routines in wiretap. svn path=/trunk/; revision=38800
2011-08-05Attempt to properly fix the missing path information for glib librariesJörg Mayer1-1/+1
svn path=/trunk/; revision=38360
2011-08-05Use GLIB2_LDFLAGS instead of GLIB2_LIBRARIES for wsutil, since itGerald Combs1-1/+1
includes the path to the libraries. Add gthread to wireshark_LIBS if threads are enabled. svn path=/trunk/; revision=38345
2011-06-28Replace all strerror() with g_strerror().Stig Bjørlykke1-1/+0
Remove our local strerror implementation. Mark strerror as locale unsafe API. This fixes bug 5715. svn path=/trunk/; revision=37812
2010-09-23H. Sivank <hsivank@gmail.com>Jörg Mayer1-1/+1
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-05-29Put the optional objects in EXTRA..SOURCES instead of EXTRA_DIST.Jeff Morriss1-4/+4
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-28Move some code (including the optional objects) into libwsutilJeff Morriss1-0/+7
svn path=/trunk/; revision=33012
2010-03-18cmake changes:Jörg Mayer1-0/+1
- 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
2009-11-17Beginnings of enabling static builds. Still to do:Jörg Mayer1-5/+9
* Add -static * Registration may need different handling * Add plugins * Build error in wslua svn path=/trunk/; revision=30987
2009-09-23Hopefully fix wsutil build on OSX.Jörg Mayer1-0/+6
svn path=/trunk/; revision=30091
2009-08-30On Windows a shared library in divided into a DLL part (RUNTIME) and an ↵Kovarththanan Rajaratnam1-2/+5
import lib (ARCHIVE). svn path=/trunk/; revision=29622