You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
################################################################################
|
|
#
|
|
# libapparmor
|
|
#
|
|
################################################################################
|
|
|
|
# When updating the version here, please also update the apparmor package
|
|
LIBAPPARMOR_VERSION_MAJOR = 3.0
|
|
LIBAPPARMOR_VERSION = $(LIBAPPARMOR_VERSION_MAJOR).3
|
|
LIBAPPARMOR_SOURCE = apparmor-$(LIBAPPARMOR_VERSION).tar.gz
|
|
LIBAPPARMOR_SITE = https://launchpad.net/apparmor/$(LIBAPPARMOR_VERSION_MAJOR)/$(LIBAPPARMOR_VERSION)/+download
|
|
LIBAPPARMOR_LICENSE = LGPL-2.1
|
|
LIBAPPARMOR_LICENSE_FILES = LICENSE libraries/libapparmor/COPYING.LGPL
|
|
|
|
LIBAPPARMOR_DEPENDENCIES = host-bison host-flex host-pkgconf
|
|
LIBAPPARMOR_SUBDIR = libraries/libapparmor
|
|
LIBAPPARMOR_INSTALL_STAGING = YES
|
|
|
|
# Patch 0001 touches Makefile.am and m4 files
|
|
LIBAPPARMOR_AUTORECONF = YES
|
|
|
|
# Most AppArmor tools will want to link to the static lib.
|
|
# ac_cv_prog_cc_c99 is required for BR2_USE_WCHAR=n because the C99 test
|
|
# provided by autoconf relies on wchar_t.
|
|
LIBAPPARMOR_CONF_OPTS = \
|
|
ac_cv_prog_cc_c99=-std=gnu99 \
|
|
--enable-static \
|
|
--disable-man-pages
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3),y)
|
|
LIBAPPARMOR_DEPENDENCIES += host-python3 host-python-setuptools host-swig python3
|
|
LIBAPPARMOR_CONF_OPTS += \
|
|
--with-python \
|
|
PYTHON=$(HOST_DIR)/usr/bin/python3 \
|
|
PYTHON_CONFIG=$(STAGING_DIR)/usr/bin/python3-config \
|
|
SWIG=$(SWIG)
|
|
else
|
|
LIBAPPARMOR_CONF_OPTS += --without-python
|
|
endif
|
|
|
|
define LIBAPPARMOR_LINUX_CONFIG_FIXUPS
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_AUDIT)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_SECURITY)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_SECURITY_APPARMOR)
|
|
$(call KCONFIG_ENABLE_OPT,CONFIG_DEFAULT_SECURITY_APPARMOR)
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|
|
|