diff options
author | Guy Harris <guy@alum.mit.edu> | 2016-02-18 05:40:38 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-02-18 14:38:19 +0000 |
commit | 50a91658319706925decec69dda9ff185c750710 (patch) | |
tree | 9306325909d17e3c868d52cc25145d60b49a1ade /capchild | |
parent | 406161a3476b53913fb0d06cbba26c0718bb5e11 (diff) | |
download | wireshark-50a91658319706925decec69dda9ff185c750710.tar.gz wireshark-50a91658319706925decec69dda9ff185c750710.tar.bz2 wireshark-50a91658319706925decec69dda9ff185c750710.zip |
Remove some {-I,/I} flags.
They should not be necessary.
Change-Id: I9246d86862392c65839c18d13d8634bcf510d55e
Reviewed-on: https://code.wireshark.org/review/13992
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'capchild')
-rw-r--r-- | capchild/Makefile.am | 2 | ||||
-rw-r--r-- | capchild/Makefile.nmake | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/capchild/Makefile.am b/capchild/Makefile.am index 4d75e0b36f..9bdb3871f3 100644 --- a/capchild/Makefile.am +++ b/capchild/Makefile.am @@ -22,8 +22,6 @@ include Makefile.common include $(top_srcdir)/Makefile.am.inc -AM_CPPFLAGS += $(LIBGCRYPT_CFLAGS) $(LIBGNUTLS_CFLAGS) $(PORTAUDIO_INCLUDES) - noinst_LIBRARIES = libcapchild.a CLEANFILES = \ diff --git a/capchild/Makefile.nmake b/capchild/Makefile.nmake index be4d1820e5..8220bafd01 100644 --- a/capchild/Makefile.nmake +++ b/capchild/Makefile.nmake @@ -11,12 +11,10 @@ include ..\Makefile.nmake.inc GENERATED_CFLAGS=\ $(STANDARD_CFLAGS) \ /Zm800 \ - /I.. $(GLIB_CFLAGS) $(GNUTLS_CFLAGS) \ + /I.. $(GLIB_CFLAGS) \ /I$(PCAP_DIR)\WPCAP\LIBPCAP /I$(PCAP_DIR)\WPCAP\LIBPCAP\bpf \ /I$(PCAP_DIR)\WPCAP\LIBPCAP\lbl \ - /I$(PCAP_DIR)\include $(AIRPCAP_CFLAGS) \ - $(PORTAUDIO_CFLAGS) $(GEOIP_CFLAGS) $(WINSPARKLE_CFLAGS) \ - $(HHC_CFLAGS) + /I$(PCAP_DIR)\include $(AIRPCAP_CFLAGS) CFLAGS=$(WARNINGS_ARE_ERRORS) $(GENERATED_CFLAGS) |