Ethereal-dev: [Ethereal-dev] Small autoconf warning fix - please test

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Joerg Mayer <jmayer@xxxxxxxxx>
Date: Wed, 14 Aug 2002 15:21:35 +0200
Hello,

could someone who still uses an oder version of autoconf (I'm using 2.52)
please test the attached patch? This patch silences a warning about the
usage of deprecated macros.

 Ciao
     Jörg
--
Joerg Mayer                                          <jmayer@xxxxxxxxx>
I found out that "pro" means "instead of" (as in proconsul). Now I know
what proactive means.
Index: configure.in
===================================================================
RCS file: /usr/local/cvsroot/ethereal/configure.in,v
retrieving revision 1.170
diff -u -r1.170 configure.in
--- configure.in	12 Jul 2002 22:52:33 -0000	1.170
+++ configure.in	14 Aug 2002 13:13:15 -0000
@@ -21,7 +21,7 @@
 dnl Checks for programs.
 AC_PROG_CC
 AC_PROG_CPP
-AC_PROG_RANLIB
+AC_PROG_LIBTOOL
 AC_PROG_YACC
 AM_PROG_LEX
 AC_PATH_PROG(PERL, perl)
@@ -674,7 +674,6 @@
 AC_SUBST(plugindir)
 
 dnl libtool defs
-AC_LIBTOOL_DLOPEN
 AM_PROG_LIBTOOL
 AC_SUBST(LIBTOOL_DEPS)
 
Index: epan/configure.in
===================================================================
RCS file: /usr/local/cvsroot/ethereal/epan/configure.in,v
retrieving revision 1.25
diff -u -r1.25 configure.in
--- epan/configure.in	28 Jun 2002 20:15:31 -0000	1.25
+++ epan/configure.in	14 Aug 2002 13:13:15 -0000
@@ -24,7 +24,7 @@
 AC_PROG_CPP
 AC_PROG_YACC
 AM_PROG_LEX
-AC_PROG_RANLIB
+AC_PROG_LIBTOOL
 AC_PATH_PROG(LEX, flex)
 
 AC_SUBST(FLEX_PATH)
Index: wiretap/configure.in
===================================================================
RCS file: /usr/local/cvsroot/ethereal/wiretap/configure.in,v
retrieving revision 1.38
diff -u -r1.38 configure.in
--- wiretap/configure.in	8 Apr 2002 01:34:39 -0000	1.38
+++ wiretap/configure.in	14 Aug 2002 13:13:15 -0000
@@ -23,7 +23,7 @@
 AC_PROG_CPP
 AC_PROG_YACC
 AM_PROG_LEX
-AC_PROG_RANLIB
+AC_PROG_LIBTOOL
 AC_PATH_PROG(LEX, flex)
 
 AC_SUBST(FLEX_PATH)