feef4b733c
PIE breaks the build on m68k, so add an upstream patch to disable PIE. Obviously, when we start seriously testing the BR2_RELRO_FULL option, we will realize that it is broken on some architectures, and will probably disable it on m68k. Fixes: - http://autobuild.buildroot.org/results/25985bbc160e3d62b23c4c613b2a81f3711621e3 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# quota
|
|
#
|
|
################################################################################
|
|
|
|
QUOTA_VERSION = 4.05
|
|
QUOTA_SITE = http://downloads.sourceforge.net/project/linuxquota/quota-tools/$(QUOTA_VERSION)
|
|
QUOTA_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES) host-nfs-utils
|
|
QUOTA_LICENSE = GPL-2.0+
|
|
QUOTA_LICENSE_FILES = COPYING
|
|
QUOTA_LIBS = $(TARGET_NLS_LIBS)
|
|
QUOTA_CONF_OPTS = --disable-pie
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS)$(BR2_PACKAGE_LIBNL),yy)
|
|
QUOTA_DEPENDENCIES += host-pkgconf dbus libnl
|
|
QUOTA_CONF_OPTS += --enable-netlink
|
|
else
|
|
QUOTA_CONF_OPTS += --disable-netlink
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_E2FSPROGS),y)
|
|
QUOTA_DEPENDENCIES += host-pkgconf e2fsprogs
|
|
QUOTA_CONF_OPTS += --enable-ext2direct
|
|
else
|
|
QUOTA_CONF_OPTS += --disable-ext2direct
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
|
|
QUOTA_DEPENDENCIES += libtirpc host-pkgconf
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENLDAP):$(BR2_STATIC_LIBS),y:)
|
|
QUOTA_DEPENDENCIES += openldap
|
|
QUOTA_CONF_OPTS += --enable-ldapmail
|
|
else
|
|
QUOTA_CONF_OPTS += --disable-ldapmail
|
|
endif
|
|
|
|
QUOTA_CONF_ENV = LIBS="$(QUOTA_LIBS)"
|
|
|
|
$(eval $(autotools-package))
|