aboutsummaryrefslogtreecommitdiffstats
path: root/aclocal-fallback
AgeCommit message (Collapse)AuthorFilesLines
2015-12-01Removed some remaining svn Id tagsStig Bjørlykke1-1/+0
Change-Id: I7ffbf59099132cde55995bde991d1c6a5dd224b0 Reviewed-on: https://code.wireshark.org/review/12330 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2015-11-21autotools: Fix extra-compiler-warnings for system headersJoão Valverde3-0/+3
Use -isystem instead of -I for external headers with GCC/clang to squash all the noise. cmake already uses -isystem by default for supported platforms/compilers. Change-Id: Ia6c9d1eb9b894fda6f48c531094d792e16fd39fc Reviewed-on: https://code.wireshark.org/review/11947 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2015-11-04Fix AddressSanitizer (./configure --enable-asan) buildsDhiru Kholia3-52/+73
"./configure --enable-asan" currently fails to detect installed libraries because aclocal-fallback/* built programs have memory leaks in them. configure:34516: checking for GTK+ - version >= 3.0.0 configure:34626: gcc -o conftest ... ... configure:34626: $? = 0 configure:34626: ./conftest ================================================================= ==29007==ERROR: LeakSanitizer: detected memory leaks Direct leak of 6 byte(s) in 1 object(s) allocated from: #0 0x7fa5c95dd9aa in malloc (/usr/lib/x86_64-linux-gnu/libasan.so.2+0x989aa) #1 0x7fa5c8995578 in g_malloc (/lib/x86_64-linux-gnu/libglib-2.0.so.0+0x4f578) SUMMARY: AddressSanitizer: 6 byte(s) leaked in 1 allocation(s). configure:34626: $? = 23 configure: program exited with status 23 ... configure:34649: result: no configure:34699: error: GTK+ 3 is not available ... This system is running 64-bit Ubuntu Linux 15.10 with GCC 5.2.1 compiler. The glib-2-0.m4 leak, and the gtk-3.0.m4 leak are fixed by updating "glib-2.0.m4" to the latest upstream version. Whitespace errors are fixed locally to keep the BuildBot happy. Change-Id: I01a5f4c494a59ae6d0ee19cd2611fab163ebf9b4 Reviewed-on: https://code.wireshark.org/review/11283 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Peter Wu <peter@lekensteyn.nl>
2015-01-02Revert "Bring pkg.m4 in from pkgconfig version 0.28 so we can use the ↵Stephen Fisher1-214/+0
PKG_PROG_PKG_CONFIG macro to try searching for pkg-config even when it isn't installed. Without this (and without pkg-config installed) the configure script is broken. With it, it gives a mes" This reverts commit f94eb278624b5e5ff357ec7f943a16fb7ef2e61b. Change-Id: I1a74fa221bdb3d72e88a46ced64e0d434a8fe552 Reviewed-on: https://code.wireshark.org/review/6231 Reviewed-by: Stephen Fisher <sfisher@sdf.org>
2014-12-19Bring pkg.m4 in from pkgconfig version 0.28 so we can use theStephen Fisher1-0/+214
PKG_PROG_PKG_CONFIG macro to try searching for pkg-config even when it isn't installed. Without this (and without pkg-config installed) the configure script is broken. With it, it gives a message saying pkg-config isn't found. Change-Id: I4c5af4cedd8c1927c1e00dd6b42faef3f31b84d4 Reviewed-on: https://code.wireshark.org/review/5671 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-06-10See if this version works better on OSX 10.5AndersBroman1-4/+25
AX_EXT has been extended to deal with a situation where AX_GCC_X86_CPUID(0x00000001) returns 'unknown'. Further details can be found at <http://savannah.gnu.org/patch/?8321>. Change-Id: I0b8173789ddfc1670e9896408f5d022c30a1d0a9 Reviewed-on: https://code.wireshark.org/review/2112 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-06-10Add macros to make it possible to define HAVE_SSE4_2AndersBroman4-0/+457
Change-Id: I63ecfde72f33350d15c430da71fa11ac4923a121 Reviewed-on: https://code.wireshark.org/review/2109 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-31Continue to remove $Id$ from top of fileAlexis La Goutte4-5/+0
(Using sed : sed -i '/^\# \$Id\$/,+1 d') (start with dash) Change-Id: Ia4b5a6c2302f6a531f6a86c1ec3a2f8205c8c2dd Reviewed-on: https://code.wireshark.org/review/881 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-10-27More SVN properties cleanup.Jeff Morriss3-0/+3
svn path=/trunk/; revision=52884
2013-07-24The files in aclocal-fallback are copies of .m4 files from variousGuy Harris1-124/+0
packages, providing macros that we use in our configure script in case somebody building from SVN doesn't happen to have the package installed and thus doesn't happen to have those macros defined. In the case of Qt, there *isn't* such a .m4 file, so we had to create the macro. Move it to acinclude.m4, and rename it to AC_WIRESHARK_QT_CHECK to indicate that it's our own check. svn path=/trunk/; revision=50881
2013-07-24Check for QtMacExtras, and use it if we have it.Guy Harris1-0/+22
svn path=/trunk/; revision=50880
2013-07-14OK, with Qt 5.1, the pkg-config modules are all called Qt5Xxx ratherGuy Harris1-8/+25
than QtXxx, so look for those as well. svn path=/trunk/; revision=50568
2013-02-08Move move of the Qt checks into AM_PATH_QT.Jeff Morriss1-46/+75
svn path=/trunk/; revision=47553
2013-02-07Check for QtCore instead of Qt.Jeff Morriss1-1/+1
svn path=/trunk/; revision=47543
2013-02-07Use a variable for the package name we're querying.Jeff Morriss3-29/+31
Add SVN Id. svn path=/trunk/; revision=47538
2013-02-07QPropertyAnimation is needed for Qt builds and isn't present until Qt 4.6.0.Jeff Morriss1-0/+56
Add a (crude) check for the Qt version, making 4.6.0 the minimum. The existing checks in configure.ac should be moved into into this new module. svn path=/trunk/; revision=47537
2012-01-24Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6737Jeff Morriss2-10/+4
As suggested by njtaylor0101 [AT] gmail.com: we (always) check for the gthread module when checking glib so there's no need to check for it when checking GTK. This prevents us, when configuring with gtk3, for checking for gthread-2.0 version 3.0.0 or later. svn path=/trunk/; revision=40684
2011-11-01When checking for GTK+2, indicate that we will *not* accept GTK 3 and later.Jeff Morriss1-8/+8
svn path=/trunk/; revision=39699
2011-02-11Add a command line argument for the configure script of "--with-gtk3" toStephen Fisher1-0/+196
attempt to compile against GTK+ 3.0 (which can be installed at the same time as GTK+ 2.0). Also place a copy of the autoconf macro for finding GTK+ 3.0 in the aclocal-fallback directory taken from the GTK+ 3.0 distribution. (Note: Wireshark won't finish compiling with GTK+ 3.0 yet...) svn path=/trunk/; revision=35918
2009-06-28Detect gnutls via pkg-config instead of the deprecated libgnutls-config.Balint Reczey1-160/+0
Based on patch from Andreas Metzler. This fixes bug 3627. svn path=/trunk/; revision=28874
2008-10-22Remove aclocal-fallback m4 files that were used to check for GTK and GLIB v1.Stephen Fisher2-390/+0
Their v2 counterparts remain. svn path=/trunk/; revision=26512
2008-08-10Also check in $prefix for libsmi.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=25976
2008-07-18Remove iconv/libiconv checks from *NIX builds: GLIB-2 provides iconv ↵Jeff Morriss1-72/+0
replacements. svn path=/trunk/; revision=25765
2008-06-21From Peter Fuller:Anders Broman1-2/+2
libsmi.m4 had a typo in ldflags that broke LDFLAG settings when --with-libsmi was used https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2555 svn path=/trunk/; revision=25503
2007-12-18Fix complaint by newer autofoo toolsJörg Mayer1-1/+1
svn path=/trunk/; revision=23908
2007-11-30Add a directory argument and some default directories to "configureGerald Combs1-26/+115
--with-libsmi". svn path=/trunk/; revision=23676
2007-08-25get libsmi into the pictureLuis Ontanon1-0/+38
svn path=/trunk/; revision=22661
2007-07-20From Jess Balint: modern versions of pkg-config want --cflags or --libs ↵Jeff Morriss1-2/+2
*before* the library we're asking about svn path=/trunk/; revision=22365
2006-07-13Under Solaris (9, at least) the "iconv.h" header supplied with GNU libiconvGerald Combs1-0/+72
is incompatible with the iconv routines in libc. Add an aclocal macro from Bruno Haible that sorts everything out. svn path=/trunk/; revision=18729
2006-06-15autofoo will fail on systems that lack libgcrypt.m4.Jörg Mayer2-0/+268
Provide one in aclocal-fallback. While I'm at it: Remove the libgnutls.m4 stuff from acinclude and provide it in aclocal-fallback as well. svn path=/trunk/; revision=18475
2004-03-27Fix some aclocal warnings during autogen.shJörg Mayer4-4/+4
svn path=/trunk/; revision=10508
2002-08-27Implement an alternative method to provide missing aclocal files:Jörg Mayer3-0/+604
Check if a development file for the package is present and install the corresponding m4 file in aclocal-missing if it isn't. Add glib, glib-2.0 and gtk-2.0 to the fallback directory. svn path=/trunk/; revision=6102
2002-08-23Allow running autogen.sh on systems that do not have gtk.m4 installed.Jörg Mayer1-0/+194
That way it should be possible to build tethereal from cvs. Also, Fallback files may be added to the aclocal-fallback/ directory in case other optional packages come up. svn path=/trunk/; revision=6071