summaryrefslogtreecommitdiff
path: root/plugins/gryphon
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-02-09 19:18:42 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-02-09 19:18:42 +0000
commitf9a8a11ef521d6d9ae6160a8d75085264f07d8e2 (patch)
tree084de5debceb828e118edd682e44e95e968dfc14 /plugins/gryphon
parentae1f986db1bc9e03e50dbf0a14985fb509e7a44f (diff)
downloadwireshark-f9a8a11ef521d6d9ae6160a8d75085264f07d8e2.tar.gz
Integrate Ed Meaney's <emeaney@altiga.com> changes for using libpcap
from WinDump with Ethereal. We now have packet capturing on Win32. :) svn path=/trunk/; revision=1612
Diffstat (limited to 'plugins/gryphon')
-rw-r--r--plugins/gryphon/Makefile.nmake7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/gryphon/Makefile.nmake b/plugins/gryphon/Makefile.nmake
index b9a4b32b59..a94683a344 100644
--- a/plugins/gryphon/Makefile.nmake
+++ b/plugins/gryphon/Makefile.nmake
@@ -4,9 +4,10 @@ include ..\..\config.nmake
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../wiretap \
/I$(GLIB_DIR) /I$(GTK_DIR) /I$(GLIB_DIR)/gmodule \
- /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 $(LOCAL_CFLAGS)
+ /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
+ /I$(PCAP_DIR)\include $(LOCAL_CFLAGS)
OBJECTS=packet-gryphon.obj
-gryphon.dll gryphon.exp gryphon.lib : packet-gryphon.obj
- link -dll /out:gryphon.dll packet-gryphon.obj ../plugin_api.obj
+gryphon.dll gryphon.exp gryphon.lib : packet-gryphon.obj ..\plugin_api.obj
+ link -dll /out:gryphon.dll packet-gryphon.obj ..\plugin_api.obj