aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-06-12 10:12:21 +0000
committerGuy Harris <guy@alum.mit.edu>2003-06-12 10:12:21 +0000
commitc7ce8b9a8b5feb0686e367490758a57ce44d2383 (patch)
tree6c76bc03e2cba934466990ab0b926358d7b5244d /plugins
parentfeadec85eb9b51b562e6871bd1d97bc33606cd98 (diff)
Link the plugin with glib, as it now calls "g_free()".
svn path=/trunk/; revision=7863
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gryphon/Makefile.nmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/gryphon/Makefile.nmake b/plugins/gryphon/Makefile.nmake
index 07b4e122d6..e8a91d679b 100644
--- a/plugins/gryphon/Makefile.nmake
+++ b/plugins/gryphon/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.8 2002/02/27 09:42:47 guy Exp $
+# $Id: Makefile.nmake,v 1.9 2003/06/12 10:12:21 guy Exp $
#
include ..\..\config.nmake
@@ -14,7 +14,8 @@ CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap \
OBJECTS=packet-gryphon.obj
gryphon.dll gryphon.exp gryphon.lib : packet-gryphon.obj ..\plugin_api.obj
- link -dll /out:gryphon.dll packet-gryphon.obj ..\plugin_api.obj
+ link -dll /out:gryphon.dll packet-gryphon.obj ..\plugin_api.obj \
+ $(GLIB_DIR)\glib-$(GLIB_VERSION).lib
clean:
rm -f $(OBJECTS) gryphon.dll gryphon.exp gryphon.lib $(PDB_FILE)