Re-generate a number of ASN.1-based dissectors with the most recent
[obnox/wireshark/wip.git] / configure.in
index b39c13dd3aba007742de9f29845ccc26f8b62b37..a4a5d2c2be97b72d6cf896ff9c4321ab1cd8221d 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.250 2004/03/04 06:28:42 guy Exp $
+# $Id$
 #
 AC_INIT(etypes.h)
 
@@ -8,7 +8,7 @@ dnl Check for CPU / vendor / OS
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 
-AM_INIT_AUTOMAKE(ethereal, 0.10.2)
+AM_INIT_AUTOMAKE(ethereal, 0.10.7)
 
 AM_DISABLE_STATIC
 
@@ -30,13 +30,29 @@ then
        #
        AC_MSG_ERROR(I couldn't find pod2man; make sure it's installed and in your path)
 fi
+AC_PATH_PROG(POD2HTML, pod2html)
+if test "x$POD2HTML" = x
+then
+       #
+       # The alternative is not to build the HTML man pages....
+       #
+       AC_MSG_ERROR(I couldn't find pod2html; make sure it's installed and in your path)
+fi
 AC_PATH_PROG(LEX, flex)
 AC_PATH_PROG(PYTHON, python)
 
 AC_SUBST(PERL)
+AC_SUBST(POD2MAN)
+AC_SUBST(POD2HTML)
 AC_SUBST(LEX)
+AC_SUBST(FLEX_PATH)
 AC_SUBST(PYTHON)
 
+# Check for doxygen
+AC_PATH_PROG(DOXYGEN, doxygen)
+AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, "yes", "no")
+AM_CONDITIONAL(HAVE_DOXYGEN, test x$HAVE_DOXYGEN = xyes)
+
 # Check for packaging utilities
 # For now, we check to see if the various packaging utilites are in our
 # path.  I'm too lazy to write code to go hunt for them.  -  Gerald
@@ -66,7 +82,7 @@ AC_SUBST(HAVE_RPM)
 # argument will compile with non-GCC compilers.
 #
 AC_ARG_WITH(extra-gcc-checks,
-[  --with-extra-gcc-checks do additional -W checks in GCC.  [default=no]],
+[  --with-extra-gcc-checks Do additional -W checks in GCC.  [default=no]],
 [
        if test $withval != no
        then
@@ -131,21 +147,79 @@ else
                CFLAGS="-no-cpp-precomp $CFLAGS"
                AC_MSG_RESULT(Apple GCC - added -no-cpp-precomp)
                ;;
+       cygwin*)
+               #
+               # Shared libraries in cygwin/Win32 must never contain
+               # undefined symbols.
+               #
+               LDFLAGS="$LDFLAGS -no-undefined"
+               AC_MSG_RESULT(CygWin GCC - added -no-undefined to LDFLAGS)
+               ;;
        *)
                AC_MSG_RESULT(none needed)
                ;;
        esac
 fi
 
+#
+# On OS X, if we find the headers for Core Foundation and Launch Services,
+# add -framework options to link with Application Services (of which
+# Launch Services is a subframework) and Core Foundation (required by
+# the Launch Services APIs), so we can use that to launch a Web browser
+# from the Help menu.
+#
+# (Do those headers exist on pure Darwin?  If so, does the CoreFoundation
+# *and* Launch Services code exist there, or are those headers just stubs?
+# If the frameworks aren't present on Darwin, how *should* we check for
+# their existence?)
+#
+case "$host_os" in
+
+darwin*)
+       AC_MSG_CHECKING(whether we can build with Core Foundation and Launch Services)
+       ac_save_LIBS="$LIBS"
+       ac_frameworks="-framework ApplicationServices -framework CoreFoundation"
+       LIBS="$LIBS $ac_frameworks"
+       AC_TRY_LINK(
+          [
+#       include <CoreFoundation/CFBase.h>
+#       include <CoreFoundation/CFString.h>
+#       include <CoreFoundation/CFURL.h>
+#       include <ApplicationServices/ApplicationServices.h>
+          ],
+          [
+       CFStringRef url_CFString;
+       CFURLRef url_CFURL;
+       OSStatus status;
+
+       url_CFString = CFStringCreateWithCString(NULL, "", kCFStringEncodingASCII);
+       url_CFURL = CFURLCreateWithString(NULL, url_CFString, NULL);
+       status = LSOpenCFURLRef(url_CFURL, NULL);
+          ],
+          ac_cv_can_use_cf_and_ls=yes,
+          ac_cv_can_use_cf_and_ls=no,
+          [echo $ac_n "cross compiling; assumed OK... $ac_c"])
+       if test "$ac_cv_can_use_cf_and_ls" = yes ; then
+               AC_DEFINE(HAVE_OS_X_FRAMEWORKS, 1, [Define to 1 if you have OS X frameworks])
+               FRAMEWORKS="$ac_frameworks"
+               AC_MSG_RESULT(yes)
+       else
+               AC_MSG_RESULT(no)
+       fi
+       LIBS="$ac_save_LIBS"
+       ;;
+esac
+AC_SUBST(FRAMEWORKS)
+
 dnl Look in /usr/local for header files and libraries ?
 dnl XXX FIXME don't include /usr/local if it is already in the system
 dnl search path as this causes gcc 3.2 on Linux to complain about a change
 dnl of the system search order for includes
 AC_ARG_ENABLE(usr-local,
-[  --enable-usr-local      look for headers and libs in /usr/local tree.  [default=yes]],enable_usr_local=$enableval,enable_usr_local=yes)
+[  --enable-usr-local      look for headers and libs in /usr/local tree.  [default=yes]],ac_cv_enable_usr_local=$enableval,ac_cv_enable_usr_local=yes)
 
 AC_MSG_CHECKING(whether to use /usr/local for headers and libraries)
-if test "x$enable_usr_local" = "xyes" ; then
+if test "x$ac_cv_enable_usr_local" = "xyes" ; then
        AC_MSG_RESULT(yes)
        #
        # Arrange that we search for header files in the source directory
@@ -221,7 +295,7 @@ AC_ARG_ENABLE(ethereal,
 [  --enable-ethereal       build GTK+-based ethereal.  [default=yes]],enable_ethereal=$enableval,enable_ethereal=yes)
 
 AC_ARG_ENABLE(gtk2,
-[  --enable-gtk2           build Glib2/Gtk2+-based (t)ethereal.  [default=no]],enable_gtk2=$enableval,enable_gtk2=no)
+[  --disable-gtk2          build Glib1/Gtk1+-based (t)ethereal.  [default=no]],enable_gtk2=$enableval,enable_gtk2=yes)
 AM_CONDITIONAL(USE_GTK2, test x$enable_gtk2 = xyes)
 
 AC_ARG_ENABLE(threads,
@@ -243,7 +317,16 @@ if test "x$enable_profile_build" = "xyes" ; then
 else
        AC_MSG_RESULT(no)
 fi
-       
+
+# Create DATAFILE_DIR #define for config.h
+datafiledir=$datadir/ethereal
+datafiledir=`(
+    test "x$prefix" = xNONE && prefix=$ac_default_prefix
+    test "x$exec_prefix" = xNONE && exec_prefix=${prefix}
+    eval echo "$datafiledir"
+)`
+AC_DEFINE_UNQUOTED(DATAFILE_DIR,"$datafiledir", [Directory for data])
+
 # GTK checks
 # We don't add $GLIB_LIBS to LIBS, because we don't want to force all
 # programs to be built with GTK+.
@@ -314,7 +397,8 @@ main ()
     return 1;  /* failure */
 }
 ], ac_cv_glib_supports_modules=yes, ac_cv_glib_supports_modules=no,
-   [echo $ac_n "cross compiling; assumed OK... $ac_c"])
+   [echo $ac_n "cross compiling; assumed OK... $ac_c"
+    ac_cv_glib_supports_modules=yes])
 CFLAGS="$ac_save_CFLAGS"
 LIBS="$ac_save_LIBS"
 if test "$ac_cv_glib_supports_modules" = yes ; then
@@ -325,6 +409,64 @@ else
   have_plugins=no
 fi
 
+#
+# We can't just check for <inttypes.h> - some systems have one that
+# doesn't define all the PRI[doxu]64 macros.
+#
+AC_CHECK_HEADERS(inttypes.h,
+  [
+    #
+    # OK, we have inttypes.h, but does it define those macros?
+    #
+    AC_MSG_CHECKING([[whether inttypes.h defines the PRI[doxu]64 macros]])
+    AC_COMPILE_IFELSE(
+      [
+       AC_LANG_SOURCE(
+         [[
+           #include <inttypes.h>
+           #include <glib.h>
+           #include <stdio.h>
+           #include <sys/types.h>
+
+           main()
+           {
+             printf("%" PRId64 "\n", (gint64)1);
+             printf("%" PRIo64 "\n", (guint64)1);
+             printf("%" PRIx64 "\n", (guint64)1);
+             printf("%" PRIu64 "\n", (guint64)1);
+           }
+         ]])
+      ],
+      [
+       AC_MSG_RESULT(yes)
+       ac_ethereal_inttypes_h_defines_formats=yes
+      ],
+      [
+       AC_MSG_RESULT(no)
+       ac_ethereal_inttypes_h_defines_formats=no
+      ])
+  ],
+  [
+    #
+    # We don't have inttypes.h, so it obviously can't define those
+    # macros.
+    #
+    ac_ethereal_inttypes_h_defines_formats=no
+  ])
+if test "$ac_ethereal_inttypes_h_defines_formats" = yes; then
+  AC_DEFINE(INTTYPES_H_DEFINES_FORMATS,,[Define if <inttypes.h> defines PRI[doxu]64 macros])
+else
+  AC_ETHEREAL_CHECK_64BIT_FORMAT(ll,
+    [
+      AC_ETHEREAL_CHECK_64BIT_FORMAT(L,
+       [
+         AC_ETHEREAL_CHECK_64BIT_FORMAT(q,
+           [
+             AC_MSG_ERROR([neither %llx nor %Lx nor %qx worked on a 64-bit integer])
+           ])
+       ])
+    ])
+fi
 
 AC_SUBST(ethereal_bin)
 AC_SUBST(ethereal_man)
@@ -368,6 +510,22 @@ AC_SUBST(editcap_bin)
 AC_SUBST(editcap_man)
 
 
+# Enable/disable capinfo
+
+AC_ARG_ENABLE(capinfo,
+[  --enable-capinfo        build capinfo.  [default=yes]],enable_capinfo=$enableval,enable_capinfo=yes)
+
+if test "x$enable_capinfo" = "xyes" ; then
+       capinfo_bin="capinfo\$(EXEEXT)"
+       capinfo_man="capinfo.1"
+else
+       capinfo_bin=""
+       capinfo_man=""
+fi
+AC_SUBST(capinfo_bin)
+AC_SUBST(capinfo_man)
+
+
 # Enable/disable mergecap
 
 AC_ARG_ENABLE(mergecap,
@@ -418,7 +576,7 @@ AC_SUBST(idl2eth_man)
 # Enable/disable dftest
 
 AC_ARG_ENABLE(dftest,
-[  --enable-dftest         build dftest.  [default=no]],enable_dftest=$enableval,enable_dftest=no)
+[  --enable-dftest         build dftest.  [default=yes]],enable_dftest=$enableval,enable_dftest=yes)
 
 if test "x$enable_dftest" = "xyes" ; then
        dftest_bin="dftest\$(EXEEXT)"
@@ -578,22 +736,43 @@ AM_CONDITIONAL(SETUID_INSTALL, test x$enable_setuid_install = xyes)
 
 dnl Checks for header files.
 AC_HEADER_STDC
-AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h unistd.h stdarg.h netdb.h)
-AC_CHECK_HEADERS(sys/stat.h sys/sockio.h sys/types.h sys/socket.h)
-AC_CHECK_HEADERS(sys/utsname.h sys/wait.h)
+AC_CHECK_HEADERS(direct.h dirent.h fcntl.h netdb.h stdarg.h stddef.h unistd.h)
+AC_CHECK_HEADERS(sys/ioctl.h sys/param.h sys/socket.h sys/sockio.h sys/stat.h sys/time.h sys/types.h sys/utsname.h sys/wait.h)
 AC_CHECK_HEADERS(netinet/in.h)
-AC_CHECK_HEADERS(stddef.h)
-AC_CHECK_HEADERS(arpa/inet.h)
+AC_CHECK_HEADERS(arpa/inet.h arpa/nameser.h)
 AC_CHECK_HEADERS(iconv.h)
 
 dnl SSL Check
 SSL_LIBS=''
-AC_MSG_CHECKING(whether to use SSL library if available)
-if test "x$enable_ssl" = "xno" ; then
-       AC_MSG_RESULT(no)
-else
+AC_MSG_CHECKING(whether to use SSL library)
+
+AC_ARG_WITH(ssl,
+changequote(<<, >>)dnl
+<<  --with-ssl[=DIR]        use SSL crypto library (located in directory DIR, if supplied).   [default=no]>>,
+changequote([, ])dnl
+[
+if test "x$withval" = "xno";  then
+       want_ssl=no
+elif test "x$withval" = "xyes"; then
+       want_ssl=yes
+elif test -d "$withval"; then
+       want_ssl=yes
+       AC_ETHEREAL_ADD_DASH_L(LDFLAGS, ${withval}/lib)
+fi
+],[
+       want_ssl=no
+])
+if test "x$want_ssl" = "xyes"; then
        AC_MSG_RESULT(yes)
-       AC_ETHEREAL_SSL_CHECK
+       AC_CHECK_LIB(crypto,EVP_md5,
+           [
+               SSL_LIBS=-lcrypto
+           ],
+           [
+                AC_MSG_ERROR([SSL crypto library was requested, but is not available])
+           ])
+else
+       AC_MSG_RESULT(no)
 fi
 AC_SUBST(SSL_LIBS)
 
@@ -641,8 +820,11 @@ if test "x$netsnmpconfig" != "xno" ; then
                AC_PATH_PROG(NETSNMPCONFIG,net-snmp-config)
        else
                NETSNMPCONFIG=$netsnmpconfig
-               if test ! -x $NETSNMPCONFIG ; then
-                       AC_MSG_ERROR(Invalid net-snmp-config: $NETSNMPCONFIG)
+               if test ! -x $NETSNMPCONFIG -o ! -f $NETSNMPCONFIG ; then
+                       NETSNMPCONFIG=$netsnmpconfig/bin/net-snmp-config
+                       if test ! -x $NETSNMPCONFIG -o ! -f $NETSNMPCONFIG ; then
+                               AC_MSG_ERROR(Invalid net-snmp-config: $netsnmpconfig)
+                       fi
                fi
        fi
 else
@@ -667,8 +849,16 @@ if test "x$NETSNMPCONFIG" != "xno" -a "x$NETSNMPCONFIG" != "x" -a -x "$NETSNMPCO
        AC_CHECK_HEADERS(net-snmp/net-snmp-config.h net-snmp/library/default_store.h)
        if test "x$ac_cv_header_net_snmp_net_snmp_config_h" = "xyes" -a "x$ac_cv_header_net_snmp_library_default_store_h" = "xyes" ; then
                SNMP_LIBS=`$NETSNMPCONFIG --libs`
-               AC_DEFINE(HAVE_NET_SNMP, 1, [Define to enable support for NET-SNMP])
-               have_net_snmp="yes"
+               if echo "$SNMP_LIBS" | grep crypto >/dev/null  && test "x$SSL_LIBS" = "x"; then
+                       AC_MSG_RESULT(Net-SNMP requires openssl but ssl not enabled - disabling Net-SNMP)
+                       CFLAGS="$ethereal_save_CFLAGS"
+                       CPPFLAGS="$ethereal_save_CPPFLAGS"
+                       SNMP_LIBS=
+                       NETSNMPCONFIG="no"
+               else
+                       AC_DEFINE(HAVE_NET_SNMP, 1, [Define to enable support for NET-SNMP])
+                       have_net_snmp="yes"
+               fi
        else
                # technically, we should retry ucd-snmp but it's
                # unlikely they have installed net-snmp-config and not
@@ -696,11 +886,45 @@ else
 fi
 
 if test "x$have_net_snmp" = "xyes" || test "x$have_ucd_snmp" = "xyes"; then
-       AC_DEFINE(HAVE_SOME_SNMP, 1, [Define to if some SNMP support is to be used])
+       AC_DEFINE(HAVE_SOME_SNMP, 1, [Define to if some SNMP support is to be used])
 fi
 
 AC_SUBST(SNMP_LIBS)
 
+
+dnl kerberos/heimdal check
+AC_MSG_CHECKING(whether to use kerberos/heimdal)
+
+AC_ARG_WITH(krb5,
+changequote(<<, >>)dnl
+<<  --with-krb5[=DIR]       use kerberos/heimdal (located in directory DIR, if supplied) to use in kerberos dissection  [default=yes]>>,
+changequote([, ])dnl
+[
+       if test $withval = no
+       then
+               want_krb5=no
+       elif test $withval = yes
+       then
+               want_krb5=yes
+       else
+               want_krb5=yes
+               krb5_dir=$withval
+       fi
+],[
+       #
+       # Use kerberos/heimdal if specified, otherwise don't.
+       #
+       want_krb5=ifpresent
+       krb5_dir=
+])
+if test "x$want_krb5" = "xno" ; then
+       AC_MSG_RESULT(no)
+else
+       AC_MSG_RESULT(yes)
+       AC_ETHEREAL_KRB5_CHECK
+fi
+
+
 dnl ADNS Check
 ADNS_LIBS=''
 AC_MSG_CHECKING(whether to use the GNU ADNS library if available)
@@ -712,6 +936,12 @@ else
 fi
 AC_SUBST(ADNS_LIBS)
 
+#
+# Define ETH_VAR_IMPORT appropriately for declarations of external
+# variables exported from dynamically-linked libraries.
+#
+AC_DEFINE(ETH_VAR_IMPORT, extern, [Define as the string to precede external variable declarations in dynamically-linked libraries])
+
 dnl Checks for typedefs, structures, and compiler characteristics.
 # AC_C_CONST
 
@@ -780,6 +1010,112 @@ fi
 AC_SUBST(MKSTEMP_C)
 AC_SUBST(MKSTEMP_O)
 
+ac_save_LIBS="$LIBS"
+LIBS="$GLIB_LIBS $LIBS"
+G_ASCII_STRTOULL_C=""
+G_ASCII_STRTOULL_O=""
+G_ASCII_STRTOULL_LO=""
+AC_CHECK_FUNC(g_ascii_strtoull,
+  [G_ASCII_STRTOULL_O=""
+   G_ASCII_STRTOULL_LO=""],
+  [G_ASCII_STRTOULL_O="g_ascii_strtoull.o"
+   G_ASCII_STRTOULL_LO="g_ascii_strtoull.lo"
+   AC_DEFINE(NEED_G_ASCII_STRTOULL_H, 1, [Define if g_ascii_strtoull.h needs to be included])
+])
+LIBS="$ac_save_LIBS"
+if test "$ac_cv_func_g_ascii_strtoull" = no ; then
+  G_ASCII_STRTOULL_C="g_ascii_strtoull.c"
+  G_ASCII_STRTOULL_O="g_ascii_strtoull.o"
+  G_ASCII_STRTOULL_LO="g_ascii_strtoull.lo"
+fi
+AC_SUBST(G_ASCII_STRTOULL_C)
+AC_SUBST(G_ASCII_STRTOULL_O)
+AC_SUBST(G_ASCII_STRTOULL_LO)
+
+AC_CHECK_FUNC(inet_aton,
+  [INET_ATON_O=""
+   INET_ATON_LO=""],
+  [INET_ATON_O="inet_aton.o"
+   INET_ATON_LO="inet_aton.lo"
+])
+if test "$ac_cv_func_inet_aton" = no ; then
+  INET_ATON_C="inet_aton.c"
+  INET_ATON_O="inet_aton.o"
+  INET_ATON_LO="inet_aton.lo"
+  AC_DEFINE(NEED_INET_ATON_H, 1, [Define if inet/aton.h needs to be included])
+fi
+AC_SUBST(INET_ATON_C)
+AC_SUBST(INET_ATON_O)
+AC_SUBST(INET_ATON_LO)
+
+AC_SEARCH_LIBS(inet_pton, [socket nsl], [
+  dnl check for pre-BIND82 inet_pton() bug.
+  AC_MSG_CHECKING(for broken inet_pton)
+  AC_TRY_RUN([#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+int main()
+{
+#ifdef AF_INET6
+  char buf[16];
+  /* this should return 0 (error) */
+  return inet_pton(AF_INET6, "0:1:2:3:4:5:6:7:", buf);
+#else
+  return 1;
+#endif
+}], [AC_MSG_RESULT(ok);
+have_inet_pton=yes], [AC_MSG_RESULT(broken);
+have_inet_pton=no], [AC_MSG_RESULT(cross compiling, assume it is broken);
+have_inet_pton=no])],
+have_inet_pton=no)
+if test "$have_inet_pton" = no; then
+  INET_PTON_C="inet_pton.c"
+  INET_PTON_O="inet_pton.o"
+  INET_PTON_LO="inet_pton.lo"
+else
+  INET_PTON_C=""
+  INET_PTON_O=""
+  INET_PTON_LO=""
+fi
+AC_SUBST(INET_PTON_C)
+AC_SUBST(INET_PTON_O)
+AC_SUBST(INET_PTON_LO)
+
+AC_SEARCH_LIBS(inet_ntop, [socket nsl], [
+  AC_MSG_CHECKING([for inet_ntop prototype])
+  AC_TRY_COMPILE([#include <stdio.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
+extern const char *inet_ntop(int, const void *, char *, size_t);],, [
+    AC_MSG_RESULT(yes)
+    AC_DEFINE(HAVE_INET_NTOP_PROTO, 1,
+    [Define if inet_ntop() prototype exists])], [
+    AC_TRY_COMPILE([#include <stdio.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
+extern const char *inet_ntop(int, const void *, char *, socklen_t);],, [
+      AC_MSG_RESULT(yes)
+      AC_DEFINE(HAVE_INET_NTOP_PROTO, 1,
+      [Define if inet_ntop() prototype exists])], [
+      AC_MSG_RESULT(no)])])
+  INET_NTOP_O=""
+  INET_NTOP_LO=""], [
+  INET_NTOP_C="inet_ntop.c"
+  INET_NTOP_O="inet_ntop.o"
+  INET_NTOP_LO="inet_ntop.lo"
+  AC_DEFINE(NEED_INET_V6DEFS_H, 1,
+  [Define if inet/v6defs.h needs to be included])])
+AC_SUBST(INET_NTOP_C)
+AC_SUBST(INET_NTOP_O)
+AC_SUBST(INET_NTOP_LO)
+
 AC_CHECK_FUNC(strptime, STRPTIME_O="",
   [STRPTIME_O="strptime.o"
    AC_DEFINE(NEED_STRPTIME_H, 1, [Define if strptime.h needs to be included])
@@ -841,6 +1177,12 @@ else
 fi
 AC_SUBST(plugindir)
 
+#
+# The plugin dissectors reside in ./plugins/PROTO/
+#
+PLUGIN_LIBS="-L../../epan -lethereal $GLIB_LIBS"
+AC_SUBST(PLUGIN_LIBS)
+
 dnl libtool defs
 #
 # Yes, AM_PROG_LIBTOOL is redundant with newer version(s) of some tool(s)
@@ -860,12 +1202,22 @@ then
 fi
 AC_SUBST(ENABLE_STATIC)
 
+dnl Save the cacheable configure results to config.cache before recursing
+AC_CACHE_SAVE
+
 AM_CONFIG_HEADER(config.h)
-AC_CONFIG_SUBDIRS(epan wiretap)
+AC_CONFIG_SUBDIRS(wiretap)
 AC_OUTPUT(
   Makefile
+  doxygen.cfg
   doc/Makefile
+  epan/Makefile
+  epan/doxygen.cfg
+  epan/dfilter/Makefile
+  epan/dissectors/Makefile
+  epan/ftypes/Makefile
   gtk/Makefile
+  gtk/doxygen.cfg
   help/Makefile
   packaging/Makefile
   packaging/nsis/Makefile
@@ -879,6 +1231,7 @@ AC_OUTPUT(
   plugins/acn/Makefile
   plugins/artnet/Makefile
   plugins/asn1/Makefile
+  plugins/ciscosm/Makefile
   plugins/docsis/Makefile
   plugins/enttec/Makefile
   plugins/giop/Makefile
@@ -887,9 +1240,12 @@ AC_OUTPUT(
   plugins/lwres/Makefile
   plugins/megaco/Makefile
   plugins/mgcp/Makefile
+  plugins/opsi/Makefile
   plugins/pcli/Makefile
   plugins/rdm/Makefile
+  plugins/rlm/Makefile
   plugins/rtnet/Makefile
+  plugins/rudp/Makefile
   plugins/v5ua/Makefile
   tools/Makefile
   tools/lemon/Makefile
@@ -916,6 +1272,18 @@ else
        pcre_message="yes"
 fi
 
+if test "x$want_ssl" = "xno" ; then
+       ssl_message="no"
+else
+       ssl_message="yes"
+fi
+
+if test "x$want_krb5" = "xno" ; then
+       krb5_message="no"
+else
+       krb5_message="yes (heimdal)"
+fi
+
 if test "x$have_good_adns" = "xyes" ; then
        adns_message="yes"
 else
@@ -934,6 +1302,7 @@ echo ""
 echo "The Ethereal package has been configured with the following options."
 echo "                    Build ethereal : $enable_ethereal"
 echo "                   Build tethereal : $enable_tethereal"
+echo "                     Build capinfo : $enable_capinfo"
 echo "                     Build editcap : $enable_editcap"
 echo "                    Build mergecap : $enable_mergecap"
 echo "                   Build text2pcap : $enable_text2pcap"
@@ -951,6 +1320,8 @@ fi
 echo "                  Use pcap library : $want_pcap"
 echo "                  Use zlib library : $zlib_message"
 echo "                  Use pcre library : $pcre_message"
+echo "              Use kerberos library : $krb5_message"
 echo "              Use GNU ADNS library : $adns_message"
+echo "            Use SSL crypto library : $ssl_message"
 echo "          Use IPv6 name resolution : $enable_ipv6"
 echo "     Use UCD SNMP/NET-SNMP library : $snmp_libs_message"