Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Ethereal-dev: Re: [Ethereal-dev] Changed required automake to 1.6 and autoconf to2.53

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

From: "Olivier Biot" <ethereal@xxxxxxxxxx>
Date: Thu, 4 Mar 2004 01:17:47 +0100
From: Richard Sharpe

| On Thu, 4 Mar 2004, Olivier Biot wrote:
|
| > I just successfully compiled with automake 1.7.9, autoconf 2.59
and
| > libtool 1.5.
|
| Well, I am still having problems with automake 1.7.5 and autoconf
2.57. I
| currently get this (after deleting my source and refreshing it):
|
| [rsharpe@tulomne ethereal] aclocal
| aclocal: configure.in: 22: macro `AM_DISABLE_STATIC' not found in
library
| aclocal: configure.in: 262: macro `AM_PATH_GTK_2_0' not found in
library
| aclocal: configure.in: 265: macro `AM_PATH_GTK' not found in library
| aclocal: configure.in: 286: macro `AM_PATH_GLIB_2_0' not found in
library
| aclocal: configure.in: 288: macro `AM_PATH_GLIB' not found in
library
| aclocal: configure.in: 296: macro `AM_PATH_GLIB_2_0' not found in
library
| aclocal: configure.in: 298: macro `AM_PATH_GLIB' not found in
library
| aclocal: configure.in: 862: macro `AM_PROG_LIBTOOL' not found in
library

Try commenting out some lines in your autogen.sh script. On my laptop
I don't need to do this, but on my PC I *must* do so (and I dunno
what's the cause of this). I have the following hack in my autogen.sh
script:

#if pkg-config gtk+-2.0 >/dev/null 2>&1 ; then
# rm -f aclocal-missing/gtk-2.0.m4
#else
 cp aclocal-fallback/gtk-2.0.m4 aclocal-missing/
#fi

Maybe you should try the same with the glib-2.0.m4 macros too (that's
the lines just above the ones quoted above).

Regards,

Olivier