ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Ethereal-dev: Re: [Ethereal-dev] artnet plugin seems to need libtool which is causing problems

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

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Tue, 16 Sep 2003 10:14:50 -0700
On Mon, Sep 15, 2003 at 11:28:47AM -0700, Richard Sharpe wrote:
> I am trying to build the latest ethereal CVS and am running into problems 
> with artnet on FreeBSD. Actually, it seems more wide-spread than that. 
> Here is the message I get when running autogen:
> 
> automake --add-missing --gnu
> plugins/docsis/Makefile.am:29: library used but `LIBTOOL' not defined in 
> `configure.in'
> 
> which suggests a problem with configure.am ...

(I assume you meant "a problem with configure.in".)

Try applying the attached patch to the top-level configure.in and
re-running autogen.

If that works, then it's yet another problem with the removal of the
AM_PROG_LIBTOOL call from the top-level configure.in.
Index: configure.in
===================================================================
RCS file: /usr/local/cvsroot/ethereal/configure.in,v
retrieving revision 1.221
diff -c -r1.221 configure.in
*** configure.in	10 Sep 2003 07:17:21 -0000	1.221
--- configure.in	16 Sep 2003 17:13:19 -0000
***************
*** 771,776 ****
--- 771,777 ----
  AC_SUBST(plugindir)
  
  dnl libtool defs
+ AM_PROG_LIBTOOL
  AC_SUBST(LIBTOOL_DEPS)
  
  AM_CONDITIONAL(ENABLE_STATIC, test x$enable_static = xyes)