to prevent problems reported by David Richards, don't depend on the cvarsdll from win32.mak and define our own CVARSDLL

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11980 f5534014-38df-0310-8fa8-9805f1628bb7
This commit is contained in:
ulfl 2004-09-12 23:29:33 +00:00
parent c9c668af1d
commit c5162d04cc
1 changed files with 3 additions and 1 deletions

View File

@ -12,8 +12,10 @@ include Makefile.common
CFLAGS=-DHAVE_CONFIG_H $(GLIB_CFLAGS) $(ZLIB_CFLAGS) /I$(PCAP_DIR)/include \
-D_U_="" $(LOCAL_CFLAGS)
CVARSDLL=-DWIN32 -DNULL=0 -D_MT -D_DLL
.c.obj::
$(CC) $(cvarsdll) $(CFLAGS) -Fd.\ -c $<
$(CC) $(CVARSDLL) $(CFLAGS) -Fd.\ -c $<
OBJECTS=$(NONGENERATED_C_FILES:.c=.obj) $(GENERATED_C_FILES:.c=.obj)