diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-11-14 10:38:15 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-11-14 10:38:15 +0000 |
commit | e8bebbd7272d9936069a76c1d6d9e971097e1660 (patch) | |
tree | 45743c7f4c6d95d3c0de7b789344eea17c8a9abc /plugins/mgcp | |
parent | 29a2973984112fe0171b3b9d4c1b52fe046e38be (diff) | |
download | wireshark-e8bebbd7272d9936069a76c1d6d9e971097e1660.tar.gz wireshark-e8bebbd7272d9936069a76c1d6d9e971097e1660.tar.bz2 wireshark-e8bebbd7272d9936069a76c1d6d9e971097e1660.zip |
"plugin_api.c" needs to include <glib.h>, to define G_HAVE_GINT64 on
platforms that have "gint64".
Fix plugin-table lines for "dissector_delete()", "dissect_data()",
"prefs_register_module()", and "prefs_register_uint_preference()".
The MGCP dissector uses routines from GLib, so when building it as a DLL
for Windows, it has to be linked with "glib-XXX.lib".
svn path=/trunk/; revision=2643
Diffstat (limited to 'plugins/mgcp')
-rw-r--r-- | plugins/mgcp/Makefile.nmake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/mgcp/Makefile.nmake b/plugins/mgcp/Makefile.nmake index 20a0f0de4b..6803a9cbfb 100644 --- a/plugins/mgcp/Makefile.nmake +++ b/plugins/mgcp/Makefile.nmake @@ -1,5 +1,5 @@ # -# $Id: Makefile.nmake,v 1.1 2000/11/12 11:08:46 guy Exp $ +# $Id: Makefile.nmake,v 1.2 2000/11/14 10:38:15 guy Exp $ # include ..\..\config.nmake @@ -14,7 +14,8 @@ CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../epan /I../../wiretap \ OBJECTS=packet-mgcp.obj mgcp.dll mgcp.exp mgcp.lib : packet-mgcp.obj ..\plugin_api.obj - link -dll /out:mgcp.dll packet-mgcp.obj ..\plugin_api.obj + link -dll /out:mgcp.dll packet-mgcp.obj ..\plugin_api.obj \ + $(GLIB_DIR)\glib-$(GLIB_VERSION).lib clean: rm -f $(OBJECTS) mgcp.dll mgcp.exp mgcp.lib |