From some reason, at least on Mac OS X 10.3, the change to have the

protocol tree stuff not use GNodes means that the ASN.1 plugin now needs
to be explicitly linked against GLib in order to get access to the GNode
routines, otherwise you get errors from the run-time linker.

svn path=/trunk/; revision=9173
This commit is contained in:
Guy Harris 2003-12-04 22:37:52 +00:00
parent fa1de9d824
commit 2428266b1d
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal/asn1
#
# $Id: Makefile.am,v 1.2 2003/11/17 22:34:23 guy Exp $
# $Id: Makefile.am,v 1.3 2003/12/04 22:37:52 guy Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -33,7 +33,7 @@ asn1_la_LDFLAGS = -module -avoid-version
# Libs must be cleared, or else libtool won't create a shared module.
# If your module needs to be linked against any particular libraries,
# add them here.
LIBS =
LIBS = $(GLIB_LIBS)
packet-asn1-static.o: packet-asn1.c moduleinfo.h
$(LTCOMPILE) -c -o packet-asn1-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-asn1.c