aboutsummaryrefslogtreecommitdiffstats
path: root/aclocal-flags
Commit message (Collapse)AuthorAgeFilesLines
* Continue to remove $Id$ from top of fileAlexis La Goutte2014-03-311-2/+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>
* Use "command -v", required by recent POSIX, rather than "which"; I seemGuy Harris2013-08-121-2/+14
| | | | | | | | | | | to remember this being suggested relatively recently on some mailing list (either one of the Wireshark lists or tcpdump-workers, I think). Handle systems where /usr/X11R6/bin is a symlink to /usr/bin and where the user running autogen.sh has /usr/X11R6/bin before /usr/bin in their $PATH. svn path=/trunk/; revision=51315
* Work around Solaris 11's pkg-config being in /usr/ccs/bin but itsGuy Harris2012-09-161-0/+10
| | | | | | | | | | aclocal directory apparently being in /usr/share/aclocal rather than the non-existent /usr/ccs/share/aclocal. (/usr/ccs is sort of an extension of /usr for developers; I'm not sure why they stuck the pkg-config stuff under /usr/share rather than /usr/ccs/share given that it's of interest only to developers.) svn path=/trunk/; revision=44922
* Check for pkg-config's path as well, just in case it's installedGuy Harris2011-04-141-17/+94
| | | | | | | | | somewhere other than GLib (or if GLib isn't installed at all; that configure script will fail in that case, but that's better than failing because PKG_CHECK_MODULES wasn't defined, as that's a confusing failure mode). svn path=/trunk/; revision=36635
* We only support GLib 2.x/GTK+ 2.x, which uses pkg-config, notGuy Harris2009-06-281-14/+16
| | | | | | gtk-config; use it instead. svn path=/trunk/; revision=28876
* Make aclocal-flags executable again (hopefully fixes buildbot fc4)Jörg Mayer2005-08-021-0/+0
| | | | svn path=/trunk/; revision=15187
* Remove svn:executableJörg Mayer2005-08-021-0/+0
| | | | | | | Add svn:eol-style native Add svn:keywords Id svn path=/trunk/; revision=15180
* Set the svn:eol-style property on all text files to "native", so thatGuy Harris2004-07-181-1/+1
| | | | | | | | | they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
* Suppress warning in case of gtk-config is not installed.Michael Tüxen2004-07-031-2/+2
| | | | svn path=/trunk/; revision=11301
* Hackremoval:Jörg Mayer2004-03-041-2/+2
| | | | | | | Automake newer than 1.4 survives if it finds more than one file for the same package. svn path=/trunk/; revision=10298
* Put a "-I" before "$gtk_aclocal_dir".Gerald Combs2003-01-221-2/+2
| | | | svn path=/trunk/; revision=6977
* "echo -n" isn't portable, and neither is sticking "\c" at the end of theGuy Harris2003-01-221-3/+3
| | | | | | | | | | | string to be echoed; use "tr" to delete new lines and, while we're at it, also delete carriage returns (just in case this is being run under Cygwin or something such as that, and it produces lines ending with CR-LF). Don't use character classes - I seem to remember that some versions of "tr" require you to put the classes in square brackets and some other versions don't work if you put them in square brackets. svn path=/trunk/; revision=6973
* aclocal-flags, autogen.sh:Jörg Mayer2003-01-221-2/+6
| | | | | | | | | | - Fix handling of aclocal include flags for aclocal-include autogen.sh: - Name version variables individually - Disable configure at end of autogen.sh svn path=/trunk/; revision=6965
* 1.3 was committed by mistakeJun-ichiro itojun Hagino2002-03-061-6/+6
| | | | svn path=/trunk/; revision=4886
* VRRPv3 (for IPv6) support, by sumikawa@kame.netJun-ichiro itojun Hagino2002-03-061-6/+6
| | | | svn path=/trunk/; revision=4885
* Enable the building of any combination of ethereal, tethereal, and editcap.Gilbert Ramirez2000-11-221-2/+9
| | | | | | If GTK+ is not detected, then ethereal is not built. svn path=/trunk/; revision=2695
* Add a script, "aclocal-flags", which figures out whereGuy Harris2000-07-261-0/+49
1) aclocal expects autoconf/automake macros to be hidden; 2) GTK+ hid its autoconf/automake macros; and, if both places exist but aren't the same directory, returns a "-I" flag to tell aclocal to look in GTK+'s directory. Then have "autogen.sh", and Makefiles in directories with "acinclude.m4" files, use that script and pass what flag it supplies, if any, to aclocal. This should, I hope, avoid problems such as those FreeBSD systems where GTK+ was installed from a port or package (and thus stuck its macros in "/usr/X11R6/share/aclocal") but aclocal doesn't look there. (It doesn't solve the problem of somebody downloading and installing, say, libtool from source - which means it probably shows up under "/usr/local", with its macros in "/usr/local/share/aclocal" - on a system that comes with aclocal (meaning it probably just looks in "/usr/share/aclocal", but that may be best fixed by, whenever you download a source tarball for something that's part of your OS, configuring it to install in the standard system directories and *overwriting* your OS's version.) svn path=/trunk/; revision=2165