server/peer.c, server/keyset.c: Fix key renegotiation behaviour.
[tripe] / configure.ac
index 1c67cb7..0eeb1ec 100644 (file)
@@ -38,6 +38,8 @@ AX_CFLAGS_WARN_ALL
 AC_CANONICAL_HOST
 AM_PROG_LIBTOOL
 
+AC_CHECK_PROGS([AUTOM4TE], [autom4te])
+
 dnl--------------------------------------------------------------------------
 dnl C programming environment.
 
@@ -190,7 +192,7 @@ AC_ARG_WITH([wireshark],
               no)  haveshark=no needshark=no ;;
               yes) haveshark=yes needshark=yes ;;
               *)   haveshark=yes needshark=yes
-                   wireshark_plugindir=$withval ;;
+                   wireshark_plugindir=$withval ;;
            esac],
            [haveshark=yes needshark=no])
 
@@ -236,7 +238,7 @@ case "$haveshark" in
     mdw_CFLAGS=$CFLAGS
     wsprefix=`echo $wireshark_plugindir | sed 's:/lib/.*$::'`
     AC_CACHE_CHECK([how to find the Wireshark headers],
-                  [mdw_cv_wireshark_includes], [
+                  [mdw_cv_wireshark_includes], [
       mdw_cv_wireshark_includes=failed
       for i in \
          "" \
@@ -283,10 +285,12 @@ dnl--------------------------------------------------------------------------
 dnl Produce output.
 
 AC_CONFIG_HEADER([config/config.h])
+AC_CONFIG_TESTDIR([t])
 
 AC_CONFIG_FILES(
   [Makefile]
   [common/Makefile]
+  [uslip/Makefile]
   [client/Makefile]
   [server/Makefile]
   [proxy/Makefile]
@@ -294,7 +298,8 @@ AC_CONFIG_FILES(
   [wireshark/Makefile]
   [init/Makefile]
   [keys/Makefile]
-  [mon/Makefile])
+  [mon/Makefile]
+  [t/Makefile t/atlocal])
 AC_OUTPUT
 
 dnl ----- That's all, folks -------------------------------------------------