aboutsummaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
AgeCommit message (Collapse)AuthorFilesLines
2013-10-11We don't need to check for lauxlib.h.Guy Harris1-1/+0
svn path=/trunk/; revision=52536
2013-10-11Check for sa_len in struct sockaddr.Guy Harris1-2/+3
svn path=/trunk/; revision=52534
2013-10-11Note that dladdr() isn't being found on OS X, even though it'sGuy Harris1-0/+9
available. svn path=/trunk/; revision=52524
2013-10-10Move the QT_MACEXTRAS_LIB cmakedefine in cmakeconfig.h.in to theGuy Harris1-1/+4
equivalent location in config.h.in, to simplify comparing the two files. Add some tests from the autoconf script to CMake: check for setresgid() and setresuid(); check for struct stat having an st_flags member. Get rid of INTTYPES_H_DEFINES_FORMATS; we don't appear to check for it, and we don't use it (we're using GLib's formatting functions, which have their own way of handling 64-bit integers). Get rid of STDC_HEADERS; it's in autoconf because autoconf was originally developed back when you couldn't rely in ANSI C and has never been removed, and something we're using for other purposes checks for it, not because we explicitly test for it, but we don't test it in the code, and CMake doesn't even check for it. svn path=/trunk/; revision=52522
2013-10-06Set some values for Windows manually where autodetectionJörg Mayer1-4/+8
does not yet work. svn path=/trunk/; revision=52406
2013-10-05Invert NEED_INET_ATON_H to HAVE_INET_ATON_HJörg Mayer1-4/+1
Remove unused NEED_G_ASCII_STRTOULL_H svn path=/trunk/; revision=52385
2013-08-13Implement in cmake:Jörg Mayer1-0/+7
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=51322 > User: guy > Date: 2013/08/12 01:01 PM > > Log: > Just check whether dladdr() is available; we check in the code whether > it succeeds, so there's no point in checking whether it succeeds in a > sample program. svn path=/trunk/; revision=51334
2013-07-16set HAVE_GETOPT_H and HAVE_GETOPT variablesMartin Kaiser1-0/+1
for both autotools and cmake builds (in order to use getopt_long(), we have to check if we can include getopt.h) svn path=/trunk/; revision=50680
2013-04-19Add HAVE_TM_ZONE and HAVE_TZNAME detection to fix timezone displayJörg Mayer1-2/+6
in cmake builds. svn path=/trunk/; revision=48932
2012-09-10Copy over HAVE_NL80211 from autofooJörg Mayer1-1/+11
svn path=/trunk/; revision=44853
2012-09-10Make the check for NL80211_CMD_SET_CHANNEL work by copyingJörg Mayer1-3/+14
the logic of the autofoo test. Using Cmake's check_symbol_exists is not an option as it will not work for enums and types. As this is documented in the manpage this is to be considered a feature and not a bug. svn path=/trunk/; revision=44851
2012-09-06Get netlink detection working with cmake (not complete)Jörg Mayer1-0/+5
svn path=/trunk/; revision=44791
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-08-09Copy over the commit 38437 to cmake.Jörg Mayer1-1/+1
svn path=/trunk/; revision=38438
2011-08-06Set svn:keywords and svn:eol-style. Fix the EOL style.Guy Harris1-54/+77
Add the copyright comment and give it an SVN ID. svn path=/trunk/; revision=38381
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
2009-10-06Invert check for getopt: NEED_GETOPT_H -> HAVE_GETOPT_HStig Bjørlykke1-3/+2
Rename getopt.[ch] -> wsgetopt.[ch] to avoid name collision. svn path=/trunk/; revision=30370
2009-09-12Make building with GeoIP, Python, Capabilities and c-aresJörg Mayer1-0/+3
actually work. svn path=/trunk/; revision=29870
2009-09-01Check for mkdtemp()Kovarththanan Rajaratnam1-0/+1
svn path=/trunk/; revision=29659
2009-08-31Add check for HAVE_MKSTEMP to make build work again onJörg Mayer1-0/+1
platforms that know about mkstemp(). svn path=/trunk/; revision=29645
2009-08-30Add a couple of Windows header filesKovarththanan Rajaratnam1-0/+4
svn path=/trunk/; revision=29630
2009-08-27Add ConfigureChecks.cmakeKovarththanan Rajaratnam1-0/+47
svn path=/trunk/; revision=29586