aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/rtnet
diff options
context:
space:
mode:
authorOlivier Biot <obiot.ethereal@gmail.com>2004-04-14 22:13:28 +0000
committerOlivier Biot <obiot.ethereal@gmail.com>2004-04-14 22:13:28 +0000
commit4459d9f0a9706a576942da662b04837c0f63ead7 (patch)
treea86bab7032fe22711bb6efc77233c372ad81584c /plugins/rtnet
parentaf4a73a52329318d6a120eab009eb8fdb0dc5949 (diff)
Add support for plugin dissectors on cygwin builds, by adding the following
line to every Makefile.am file for a given plugin XXX: XXX_la_LIBADD = -L../../epan -lethereal @GLIB_LIBS@ This way symbols defined in libethereal and GLib are resolved when linking the plugin dissector modules. svn path=/trunk/; revision=10601
Diffstat (limited to 'plugins/rtnet')
-rw-r--r--plugins/rtnet/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/rtnet/Makefile.am b/plugins/rtnet/Makefile.am
index 66fd96fdb6..4f2bff9699 100644
--- a/plugins/rtnet/Makefile.am
+++ b/plugins/rtnet/Makefile.am
@@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal/RTNET
#
-# $Id: Makefile.am,v 1.3 2003/11/17 22:34:25 guy Exp $
+# $Id: Makefile.am,v 1.4 2004/04/14 22:13:27 obiot Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@@ -29,6 +29,7 @@ plugindir = @plugindir@
plugin_LTLIBRARIES = rtnet.la
rtnet_la_SOURCES = packet-rtnet.c moduleinfo.h
rtnet_la_LDFLAGS = -module -avoid-version
+rtnet_la_LIBADD = -L../../epan -lethereal @GLIB_LIBS@
# Libs must be cleared, or else libtool won't create a shared module.
# If your module needs to be linked against any particular libraries,