X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/tripe/blobdiff_plain/288fc12b89f5557829a4bedbc65a648c324de4a6..bbaa0bc19cb3a13f1ee2b33d2d666c4bdf6328fd:/configure.ac diff --git a/configure.ac b/configure.ac index 3ad53dc8..9583b73a 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl dnl (c) 2001 Straylight/Edgeware dnl -dnl ----- Licensing notice -------------------------------------------------- +dnl----- Licensing notice --------------------------------------------------- dnl dnl This file is part of Trivial IP Encryption (TrIPE). dnl @@ -31,6 +31,7 @@ AC_INIT([tripe], AUTO_VERSION, [mdw@distorted.org.uk]) AC_CONFIG_SRCDIR([server/tripe.h]) AC_CONFIG_AUX_DIR([config]) AM_INIT_AUTOMAKE([foreign]) +mdw_SILENT_RULES AC_PROG_CC AM_PROG_CC_C_O @@ -40,6 +41,11 @@ AM_PROG_LIBTOOL AC_CHECK_PROGS([AUTOM4TE], [autom4te]) +mdw_ORIG_CFLAGS=$CFLAGS +mdw_ORIG_CPPFLAGS=$CPPFLAGS +AC_SUBST(AM_CFLAGS) +AC_SUBST(AM_CPPFLAGS) + dnl-------------------------------------------------------------------------- dnl C programming environment. @@ -50,17 +56,17 @@ AC_SEARCH_LIBS([socket], [socket]) case "$host_os" in linux) AC_ARG_WITH([linux-includes], - AS_HELP_STRING( + AS_HELP_STRING( [--with-linux-includes=DIR], [Linux kernel includes]), - [CFLAGS="$CFLAGS -I$withval"], [:]) + [AM_CPPFLAGS="AM_CPPFLAGS -I$withval"], [:]) ;; esac -PKG_CHECK_MODULES([mLib], [mLib >= 2.1.0]) -PKG_CHECK_MODULES([catacomb], [catacomb >= 2.1.1]) +PKG_CHECK_MODULES([mLib], [mLib >= 2.2.1]) +PKG_CHECK_MODULES([catacomb], [catacomb >= 2.1.4]) -CFLAGS="$CFLAGS $mLib_CFLAGS $catacomb_CFLAGS" +AM_CFLAGS="$AM_CFLAGS $mLib_CFLAGS $catacomb_CFLAGS" dnl-------------------------------------------------------------------------- dnl Directories to install things into. @@ -116,19 +122,6 @@ AC_ARG_WITH([tracing], AC_DEFINE([NTRACE], [1], [Disable all tracing.])], [:]) -dnl-------------------------------------------------------------------------- -dnl Path MTU discovery. - -case $host_os in - linux*) - pmtu=yes - ;; - *) - pmtu=no - ;; -esac -AM_CONDITIONAL([PATHMTU], [test $pmtu = yes]) - dnl-------------------------------------------------------------------------- dnl Tunnel devices. @@ -218,28 +211,32 @@ AC_ARG_WITH([wireshark], esac], [haveshark=yes needshark=no]) -dnl Try to find the Wireshark installation directory the hard way. +dnl Try to find the Wireshark installation directory the hard way. This is +dnl remarkably annoying. This is, unfortunately, very likely to guess wrong, +dnl but there doesn't seem to be a better way. case "$haveshark,$wireshark_plugindir" in yes,unknown) AC_CACHE_CHECK([where to put Wireshark plugins], [mdw_cv_wireshark_plugin_dir], [ - mdw_cv_wireshark_plugin_dir="failed" - wsprefix=none - for i in "${prefix}" /usr/local /usr `echo $PATH | tr : " "`; do - if test -x "$i/bin/tshark"; then - wsprefix=$i - break - fi - done - if test "$wsprefix" != none; then - wsbin=$wsprefix/bin/tshark - wsver=`$wsbin -v | sed ['s/^[^ ]* \([0-9A-Za-z.]*\).*$/\1/;q']` - dir=$wsprefix/lib/wireshark/plugins - test -d "$dir/$wsver" && dir="$dir/$wsver" - if test -d "$dir"; then - mdw_cv_wireshark_plugin_dir=$dir - fi - fi + mdw_cv_wireshark_plugin_dir=$( + for i in \ + $libexecdir $libdir $exec_prefix/lib $prefix/lib \ + /usr/local/lib /usr/lib + do + for j in \ + wireshark/plugins/* wireshark/*/plugins \ + */wireshark/plugins/* */wireshark/*/plugins + do + for k in $i/$j/*.so; do + if test -f "$k"; then + echo $(AS_DIRNAME(["$k"])) + exit + fi + done + done + done + echo "failed" + ) ]) case $mdw_cv_wireshark_plugin_dir in failed) haveshark=no ;; @@ -295,7 +292,7 @@ case "$haveshark,$needshark" in AC_MSG_ERROR([failed to configure Wireshark plugin]) ;; yes,*) - WIRESHARK_CFLAGS="$CFLAGS $GLIB_CFLAGS $mdw_cv_wireshark_includes" + WIRESHARK_CFLAGS="$GLIB_CFLAGS $mdw_cv_wireshark_includes" AC_SUBST(WIRESHARK_CFLAGS) AC_SUBST(wireshark_plugindir) ;; @@ -306,6 +303,9 @@ AM_CONDITIONAL([HAVE_WIRESHARK], [test "$haveshark" = yes]) dnl-------------------------------------------------------------------------- dnl Produce output. +CFLAGS=$mdw_ORIG_CFLAGS +CPPFLAGS=$mdw_ORIG_CPPFLAGS + AC_CONFIG_HEADER([config/config.h]) AC_CONFIG_TESTDIR([t]) @@ -326,7 +326,8 @@ AC_CONFIG_FILES( [keys/Makefile] [svc/Makefile] [mon/Makefile] + [contrib/Makefile] [t/Makefile t/atlocal]) AC_OUTPUT -dnl ----- That's all, folks ------------------------------------------------- +dnl----- That's all, folks --------------------------------------------------