Rename PLATFORM_SRC to PLATFORM_CAPTURE_SRC, to match the CMake name.

svn path=/trunk/; revision=54669
This commit is contained in:
Guy Harris 2014-01-08 20:22:13 +00:00
parent 005ff3f64d
commit 324a7c9043
3 changed files with 7 additions and 4 deletions

View File

@ -293,7 +293,7 @@ dist_wimaxasncp_DATA = \
wimaxasncp/dictionary.xml \
wimaxasncp/dictionary.dtd
PLATFORM_SRC = \
PLATFORM_CAPTURE_SRC = \
capture-pcap-util-unix.c
if HAVE_PLUGINS

View File

@ -43,7 +43,7 @@ GENERATED_FILES = $(GENERATED_C_FILES) $(GENERATED_HEADER_FILES)
# sources common for wireshark, tshark, and rawshark
SHARK_COMMON_SRC = \
$(PLATFORM_SRC) \
$(PLATFORM_CAPTURE_SRC) \
capture-pcap-util.c \
cfutils.c \
clopts_common.c \
@ -179,7 +179,7 @@ randpkt_SOURCES = \
# dumpcap specifics
dumpcap_SOURCES = \
$(PLATFORM_SRC) \
$(PLATFORM_CAPTURE_SRC) \
capture_opts.c \
capture-pcap-util.c \
capture_stop_conditions.c \

View File

@ -51,7 +51,10 @@ CFLAGS=$(WARNINGS_ARE_ERRORS) $(GENERATED_CFLAGS)
.c.obj::
$(CC) $(CFLAGS) -Fd.\ -c $<
PLATFORM_SRC = capture-wpcap.c capture_wpcap_packet.c capture_win_ifnames.c
PLATFORM_CAPTURE_SRC = \
capture-wpcap.c \
capture_wpcap_packet.c \
capture_win_ifnames.c
include Makefile.common