aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# libpcap
|
|
#
|
|
################################################################################
|
|
|
|
LIBPCAP_VERSION = 1.6.2
|
|
LIBPCAP_SITE = http://www.tcpdump.org/release
|
|
LIBPCAP_LICENSE = BSD-3c
|
|
LIBPCAP_LICENSE_FILES = LICENSE
|
|
LIBPCAP_INSTALL_STAGING = YES
|
|
LIBPCAP_DEPENDENCIES = zlib host-flex host-bison
|
|
|
|
# We're patching configure.in
|
|
LIBPCAP_AUTORECONF = YES
|
|
LIBPCAP_CONF_ENV = ac_cv_linux_vers=2 \
|
|
ac_cv_header_linux_wireless_h=yes \
|
|
CFLAGS="$(LIBPCAP_CFLAGS)"
|
|
LIBPCAP_CFLAGS = $(TARGET_CFLAGS)
|
|
LIBPCAP_CONF_OPTS = --disable-yydebug --with-pcap=linux
|
|
LIBPCAP_CONFIG_SCRIPTS = pcap-config
|
|
|
|
# On purpose, not compatible with bluez5
|
|
ifeq ($(BR2_PACKAGE_BLUEZ_UTILS),y)
|
|
LIBPCAP_DEPENDENCIES += bluez_utils
|
|
else
|
|
LIBPCAP_CONF_OPTS += --disable-bluetooth
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
|
LIBPCAP_CONF_OPTS += --enable-dbus
|
|
LIBPCAP_DEPENDENCIES += dbus
|
|
else
|
|
LIBPCAP_CONF_OPTS += --disable-dbus
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBUSB),y)
|
|
LIBPCAP_CONF_OPTS += --enable-canusb
|
|
LIBPCAP_DEPENDENCIES += libusb
|
|
else
|
|
LIBPCAP_CONF_OPTS += --disable-canusb
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBNL),y)
|
|
LIBPCAP_DEPENDENCIES += libnl
|
|
LIBPCAP_CFLAGS += "-I$(STAGING_DIR)/usr/include/libnl3"
|
|
else
|
|
LIBPCAP_CONF_OPTS += --without-libnl
|
|
endif
|
|
|
|
# microblaze needs -fPIC instead of -fpic
|
|
ifeq ($(BR2_microblaze),y)
|
|
LIBPCAP_CFLAGS += -fPIC
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|