aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.plugins
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 /doc/README.plugins
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 'doc/README.plugins')
-rw-r--r--doc/README.plugins3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/README.plugins b/doc/README.plugins
index 131edb76df..1dbb6e1d28 100644
--- a/doc/README.plugins
+++ b/doc/README.plugins
@@ -1,4 +1,4 @@
-$Id: README.plugins,v 1.10 2004/03/02 23:45:33 jmayer Exp $
+$Id: README.plugins,v 1.11 2004/04/14 22:13:21 obiot Exp $
Plugins
@@ -122,6 +122,7 @@ plugindir = @plugindir@
plugin_LTLIBRARIES = xxx.la
xxx_la_SOURCES = packet-xxx.c moduleinfo.h
xxx_la_LDFLAGS = -module -avoid-version
+xxx_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,