diff options
author | Gerald Combs <gerald@wireshark.org> | 1999-12-28 04:40:24 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 1999-12-28 04:40:24 +0000 |
commit | 335f0b464774517798cbc55af674700708f958bd (patch) | |
tree | aff439d265cafb7bc1a163a088fef234d3db058f /plugins/gryphon | |
parent | 3425cafcfb21a0ed5b0d00402ee43eeeeee9e176 (diff) | |
download | wireshark-335f0b464774517798cbc55af674700708f958bd.tar.gz wireshark-335f0b464774517798cbc55af674700708f958bd.tar.bz2 wireshark-335f0b464774517798cbc55af674700708f958bd.zip |
Add support for "--with-plugindir=<plugin install dir>" to configure.
Make the default plugindir $(libdir)/ethereal/plugins/0.8. Ethereal now
looks for plugins in the following directories:
/usr/lib/ethereal/plugins/0.8
/usr/local/lib/ethereal/plugins/0.8
$plugindir (if different from above)
$HOME/.ethereal/plugins
svn path=/trunk/; revision=1382
Diffstat (limited to 'plugins/gryphon')
-rw-r--r-- | plugins/gryphon/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/gryphon/Makefile.am b/plugins/gryphon/Makefile.am index 9a20ed3c71..ec7aea9a37 100644 --- a/plugins/gryphon/Makefile.am +++ b/plugins/gryphon/Makefile.am @@ -1,7 +1,7 @@ # Makefile.am # Automake file for Ethereal/Gryphon # -# $Id: Makefile.am,v 1.2 1999/12/26 22:37:39 gerald Exp $ +# $Id: Makefile.am,v 1.3 1999/12/28 04:40:24 gerald Exp $ # # Ethereal - Network traffic analyzer # By Steve Limkemann <stevelim@dgtech.com> @@ -25,9 +25,9 @@ INCLUDES = -I$(top_srcdir) -I$(includedir) -libdir = $(prefix)/share/@PACKAGE@/plugins/0.8 +plugindir = @PLUGIN_DIR@ -lib_LTLIBRARIES = gryphon.la +plugin_LTLIBRARIES = gryphon.la gryphon_la_SOURCES = packet-gryphon.c packet-gryphon.h gryphon_la_LDFLAGS = -module -avoid-version |