diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-12-04 22:37:52 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-12-04 22:37:52 +0000 |
commit | 2428266b1da2c965f376342e4711833fa26c629b (patch) | |
tree | 1c18d8af1d81ddfd2b3b9a959c7ebf2d4856f248 /plugins | |
parent | fa1de9d824556d5562c65795cb8a20d4d5cc6f60 (diff) | |
download | wireshark-2428266b1da2c965f376342e4711833fa26c629b.tar.gz wireshark-2428266b1da2c965f376342e4711833fa26c629b.tar.bz2 wireshark-2428266b1da2c965f376342e4711833fa26c629b.zip |
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
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/asn1/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/asn1/Makefile.am b/plugins/asn1/Makefile.am index f6ef9ab3b2..9b1f14af7f 100644 --- a/plugins/asn1/Makefile.am +++ b/plugins/asn1/Makefile.am @@ -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 |