diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-02-09 19:18:42 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-02-09 19:18:42 +0000 |
commit | f9a8a11ef521d6d9ae6160a8d75085264f07d8e2 (patch) | |
tree | 084de5debceb828e118edd682e44e95e968dfc14 /plugins | |
parent | ae1f986db1bc9e03e50dbf0a14985fb509e7a44f (diff) | |
download | wireshark-f9a8a11ef521d6d9ae6160a8d75085264f07d8e2.tar.gz wireshark-f9a8a11ef521d6d9ae6160a8d75085264f07d8e2.tar.bz2 wireshark-f9a8a11ef521d6d9ae6160a8d75085264f07d8e2.zip |
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')
-rw-r--r-- | plugins/Makefile.nmake | 7 | ||||
-rw-r--r-- | plugins/gryphon/Makefile.nmake | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake index 5da3f0c404..1292b55d75 100644 --- a/plugins/Makefile.nmake +++ b/plugins/Makefile.nmake @@ -4,13 +4,14 @@ include ..\config.nmake CFLAGS=/DHAVE_CONFIG_H /I.. /I../wiretap /I. \ /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=plugin_api.obj -all: plugin_api.obj gryphon\gryphon.dll +all: plugin_api.obj gryphon -gryphon\gryphon.dll:: +gryphon:: cd gryphon nmake -f Makefile.nmake cd .. 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 |