a37657f44e
Of most interest is the build system overhaul, and the drop of the dependency on attr-provided <attr/xattr.h> in favour of the system-provided <sys/xattr.h>. That last bit meaning that we will be able to bump attr. We can drop our patches: static is now natively supported thanks to the use of libtool, and the internal symbols patch was a backport, and finally, our install patch is superseded by the use of autotools. The option to disable NLS has changed, so update accordingly. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
22 lines
573 B
Makefile
22 lines
573 B
Makefile
################################################################################
|
|
#
|
|
# acl
|
|
#
|
|
################################################################################
|
|
|
|
ACL_VERSION = 2.2.53
|
|
ACL_SITE = http://download.savannah.gnu.org/releases/acl
|
|
ACL_LICENSE = GPL-2.0+ (programs), LGPL-2.1+ (libraries)
|
|
ACL_LICENSE_FILES = doc/COPYING doc/COPYING.LGPL
|
|
|
|
ACL_DEPENDENCIES = attr
|
|
HOST_ACL_DEPENDENCIES = host-attr
|
|
|
|
ACL_INSTALL_STAGING = YES
|
|
|
|
ACL_CONF_OPTS = --disable-nls
|
|
HOST_ACL_CONF_OPTS = --disable-nls
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|