6f9cba8f8b
Local changes: - In contrib/libpcap/pcap/bpf.h, do not include pcap/dlt.h. Our system net/dlt.h is pulled in from net/bpf.h. - sys/net/dlt.h: Incorporate changes from libpcap 1.10.3. - lib/libpcap/Makefile: Update for libpcap 1.10.3. Changelog: https://git.tcpdump.org/libpcap/blob/95691ebe7564afa3faa5c6ba0dbd17e351be455a:/CHANGES Reviewed by: emaste Obtained from: https://www.tcpdump.org/release/libpcap-1.10.3.tar.gz Sponsored by: The FreeBSD Foundation
23 lines
618 B
Plaintext
23 lines
618 B
Plaintext
#
|
|
# Auto-regenerate configure script or Makefile when things change.
|
|
# From autoconf.info . Works best with GNU Make.
|
|
#
|
|
${srcdir}/configure: configure.ac aclocal.m4
|
|
(cd ${srcdir} && autoconf)
|
|
|
|
# autoheader might not change config.h.in, so touch a stamp file.
|
|
${srcdir}/config.h.in: ${srcdir}/stamp-h.in
|
|
${srcdir}/stamp-h.in: configure.ac aclocal.m4
|
|
(cd ${srcdir} && autoheader)
|
|
echo timestamp > ${srcdir}/stamp-h.in
|
|
|
|
config.h: stamp-h
|
|
stamp-h: ${srcdir}/config.h.in config.status
|
|
./config.status
|
|
|
|
Makefile: Makefile.in config.status
|
|
./config.status
|
|
|
|
config.status: ${srcdir}/configure
|
|
./config.status --recheck
|