+ # If this is a system-supplied pcap-config, which
+ # we define as being "a pcap-config in /usr/bin",
+ # there are some issues. Work around them.
+ #
+ if test "$PCAP_CONFIG" = "/usr/bin/pcap-config" ; then
+ #
+ # It's /usr/bin/pcap-config.
+ #
+ case "$host_os" in
+
+ darwin*)
+ #
+ # This is macOS or another Darwin-based OS.
+ #
+ # That means that /usr/bin/pcap-config it
+ # may provide -I/usr/local/include with --cflags
+ # and -L/usr/local/lib with --libs, rather than
+ # pointing to the OS-supplied library and
+ # Xcode-supplied headers. Remember that, so we
+ # ignore those values.
+ #
+ _broken_apple_pcap_config=yes
+ ;;
+ esac
+ fi
+ #