diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-06-13 10:39:29 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-06-13 10:39:29 +0000 |
commit | 63ae5638e1586ba844479ceb68bf5b9d5bf65176 (patch) | |
tree | 398c7ada94abc96da86e690dab2d3c877ddf475a /wiretap | |
parent | 3f81102560a44bc66e459dd034f459d7faca53ba (diff) | |
download | wireshark-63ae5638e1586ba844479ceb68bf5b9d5bf65176.tar.gz wireshark-63ae5638e1586ba844479ceb68bf5b9d5bf65176.tar.bz2 wireshark-63ae5638e1586ba844479ceb68bf5b9d5bf65176.zip |
Add /I$(PCAP_DIR)/include to the list of directories in which to look
for header files, so that we find "pcap.h".
svn path=/trunk/; revision=5667
Diffstat (limited to 'wiretap')
-rw-r--r-- | wiretap/Makefile.nmake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/wiretap/Makefile.nmake b/wiretap/Makefile.nmake index 72016bbbb6..55fe23d784 100644 --- a/wiretap/Makefile.nmake +++ b/wiretap/Makefile.nmake @@ -1,5 +1,5 @@ # -# $Id: Makefile.nmake,v 1.26 2002/04/30 18:58:15 guy Exp $ +# $Id: Makefile.nmake,v 1.27 2002/06/13 10:39:29 guy Exp $ # include ..\config.nmake @@ -7,7 +7,8 @@ include <win32.mak> ############### no need to modify below this line ######### -CFLAGS=-DHAVE_CONFIG_H /I$(GLIB_DIR) /I$(ZLIB_DIR) -D_U_="" $(LOCAL_CFLAGS) +CFLAGS=-DHAVE_CONFIG_H /I$(GLIB_DIR) /I$(ZLIB_DIR) /I$(PCAP_DIR)/include \ + -D_U_="" $(LOCAL_CFLAGS) .c.obj:: $(CC) $(cvarsdll) $(CFLAGS) -Fd.\ -c $< |