aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2012-11-22On UN*X, if an interface has a description, use it as the "friendlyGuy Harris1-2/+6
name". If it doesn't have a description, on OS X, use the System Configuration framework to attempt to get a "friendly name" for interfaces. If a loopback device doesn't have a friendly name, give it "Loopback" as the friendly name. Move the "turn a CFString into a mallocated C string" routine into common code, as it's used in more than one place. svn path=/trunk/; revision=46131
2012-11-22Get rid of an unused variable.Guy Harris1-1/+0
svn path=/trunk/; revision=46130
2012-11-22Assume, at least for now, that "Darwin" means "OS X"; don't botherGuy Harris1-50/+27
checking whether the relevant frameworks are available. (An iOS port's going to require a *lot* more work, and I don't know whether Darwin-the-pure-OS even builds and runs any more.) We don't need Core Services any more, as we're no longer using Gestalt(). We just need Core Foundation for getting the OS version and Application Services for firing up Web browser or file manager windows. svn path=/trunk/; revision=46129
2012-10-24Fix autotools build - missed a few spots that needed updating for wmem.Evan Huus1-0/+1
svn path=/trunk/; revision=45748
2012-09-27Add release dates for GTK+ 3.6.0 and GLib 2.34.0.Gerald Combs1-0/+2
svn path=/trunk/; revision=45181
2012-09-24Add back extra packaging information if it's present.Gerald Combs1-5/+6
svn path=/trunk/; revision=45112
2012-09-24From Jim Young, bug 7745.Martin Mathieson1-0/+19
Add Makefile support for reordercap. svn path=/trunk/; revision=45090
2012-09-21Revert r45018 and r45019: put config.h back in lemon.c and take _U_ back offJeff Morriss1-8/+7
the compile line when building with cmake. Put _U_'s definition in config.h when building with autofoo and on Windows. svn path=/trunk/; revision=45034
2012-09-18*NIX (autofoo and cmake) part of the fix forJeff Morriss1-1/+11
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6134 : Make VERSION_MAJOR, VERSION_MINOR, and VERSION_MICRO available in config.h so (e.g.) dissector writers can #if around them as necessary to make a piece of code compile with different versions of Wireshark. (Hopefully VERSION_MICRO is not important in this respect!) Windows also defines VERSION_EXTRA which can be used to help identify custom builds; this is not done for these build methods (yet?). svn path=/trunk/; revision=44986
2012-09-10From Pontus Fuchs.Anders Broman1-0/+10
new check for the configure script to disable the tool bar if the nl80211.h is not good enough. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6973 svn path=/trunk/; revision=44839
2012-09-08At least with the Shiny New llvm-gcc in Xcode 4.4.1, there's no need toGuy Harris1-48/+0
add -no-cpp-precomp; I think the way the compiler handled precompiled headers changed at some point. Let's stop adding it; that would fix bug 5878. svn path=/trunk/; revision=44816
2012-09-08We no longer use Gestalt(), so there's no need to check for it.Guy Harris1-4/+11
We *do*, however, use CFPropertyListCreateWithStream(), so we need to check for it, and, if we're able to use the OS X frameworks at all, use CFPropertyListCreateFromStream() if we don't have CFPropertyListCreateWithStream(). svn path=/trunk/; revision=44812
2012-09-04From Pontus Fuchs:Anders Broman1-0/+7
Fall back to CMD_SET_WIPHY for older kernels. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6973 svn path=/trunk/; revision=44768
2012-08-23The name configure.in has been deprecated for many years.Jörg Mayer1-0/+2311
Use configure.ac instead. svn path=/trunk/; revision=44630