This dissector uses GTK+ calls (which no dissector should); until that's

fixed, use GTK_CFLAGS and GTK_LIBS rather than GLIB_CFLAGS and
GLIB_LIBS.

svn path=/trunk/; revision=8805
This commit is contained in:
Guy Harris 2003-10-28 20:44:51 +00:00
parent 32975a11e6
commit dc1da82c41
1 changed files with 3 additions and 3 deletions

View File

@ -1,19 +1,19 @@
#
# $Id: Makefile.nmake,v 1.2 2003/10/28 19:27:49 guy Exp $
# $Id: Makefile.nmake,v 1.3 2003/10/28 20:44:51 guy Exp $
#
include ..\..\config.nmake
############### no need to modify below this line #########
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GTK_CFLAGS) \
/I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
OBJECTS=packet-asn1.obj
asn1.dll asn1.exp asn1.lib : packet-asn1.obj ..\plugin_api.obj
link -dll /out:asn1.dll packet-asn1.obj ..\plugin_api.obj \
$(GLIB_LIBS)
$(GTK_LIBS)
clean:
rm -f $(OBJECTS) asn1.dll asn1.exp asn1.lib $(PDB_FILE)