aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-06-12 10:12:21 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-06-12 10:12:21 +0000
commit0f7496da0ec02e3670caac92f7fa53c1b76f6d24 (patch)
tree6c76bc03e2cba934466990ab0b926358d7b5244d /plugins
parent1920b5a3b9d9d038d1f731adde9dfe26b76b2442 (diff)
Link the plugin with glib, as it now calls "g_free()".
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7863 f5534014-38df-0310-8fa8-9805f1628bb7
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)