aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.plugins
diff options
context:
space:
mode:
authorOlivier Biot <obiot.ethereal@gmail.com>2004-04-25 21:10:20 +0000
committerOlivier Biot <obiot.ethereal@gmail.com>2004-04-25 21:10:20 +0000
commit93751c8e3248c8f34d1c59b6a4b4ad94e85e655d (patch)
tree1bf848ee0310af83e7b0d82e80d10e960090c5c3 /doc/README.plugins
parent8300516bcb2bd8fb71bb59122c7223818a2facf9 (diff)
Replace the plugin linkage libs into PLUGIN_LIBS which is generated from the
top-level configure.in when running configure. svn path=/trunk/; revision=10699
Diffstat (limited to 'doc/README.plugins')
-rw-r--r--doc/README.plugins7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/README.plugins b/doc/README.plugins
index 1dbb6e1d28..21980e2649 100644
--- a/doc/README.plugins
+++ b/doc/README.plugins
@@ -1,4 +1,4 @@
-$Id: README.plugins,v 1.11 2004/04/14 22:13:21 obiot Exp $
+$Id: README.plugins,v 1.12 2004/04/25 21:10:20 obiot Exp $
Plugins
@@ -113,7 +113,8 @@ toplevel Makefile.nmake, and toplevel configure.in files.
3.4.1 plugins/xxx/Makefile.am
-An example of the Makefile.am follows:
+An example of the Makefile.am follows (note that the @foo@ constructs will be
+replaced with their actual values when running configure):
INCLUDES = -I$(top_srcdir)
@@ -122,7 +123,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@
+xxx_la_LIBADD = @PLUGIN_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,