mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
1c2dbcdcf0
Do not remove _FILE_OFFSET_BITS=64 from CFLAGS and CPPFLAGS to avoid the following build failure with BR2_TIME_BITS_64 raised since commit3c427c6472
: In file included from /home/fabrice/buildroot/output/host/mips-buildroot-linux-gnu/sysroot/usr/include/features.h:394, from ../include/libcgroup/error.h:9, from ../include/libcgroup.h:21, from log.c:15: /home/fabrice/buildroot/output/host/mips-buildroot-linux-gnu/sysroot/usr/include/features-time64.h:26:5: error: #error "_TIME_BITS=64 is allowed only with _FILE_OFFSET_BITS=64" 26 | # error "_TIME_BITS=64 is allowed only with _FILE_OFFSET_BITS=64" | ^~~~~ Indeed, this LFS workaround is there since the addition of the package in commitff7191c12e
and is only needed to fix a build failure with the old codesourcery-arm toolchain from 2014 which uses glibc < 2.23. as glibc 2.23 was released in February 2016: https://sourceware.org/glibc/wiki/Release/2.23, drop this workaround as already done for libselinux in commitc1fa9bc2f7
. A follow-up patch will also drop codesourcery-arm toolchain. Fixes:3c427c6472
- No autobuilder failures (yet) Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
37 lines
938 B
Makefile
37 lines
938 B
Makefile
################################################################################
|
|
#
|
|
# libcgroup
|
|
#
|
|
################################################################################
|
|
|
|
LIBCGROUP_VERSION = 2.0.3
|
|
LIBCGROUP_SITE = https://github.com/libcgroup/libcgroup/releases/download/v$(LIBCGROUP_VERSION)
|
|
LIBCGROUP_LICENSE = LGPL-2.1
|
|
LIBCGROUP_LICENSE_FILES = COPYING
|
|
LIBCGROUP_CPE_ID_VALID = YES
|
|
LIBCGROUP_DEPENDENCIES = host-bison host-flex
|
|
LIBCGROUP_INSTALL_STAGING = YES
|
|
|
|
LIBCGROUP_CONF_OPTS = \
|
|
--disable-daemon \
|
|
--disable-initscript-install
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCGROUP_TOOLS),y)
|
|
LIBCGROUP_CONF_OPTS += --enable-tools
|
|
else
|
|
LIBCGROUP_CONF_OPTS += --disable-tools
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
|
|
LIBCGROUP_DEPENDENCIES += linux-pam
|
|
LIBCGROUP_CONF_OPTS += --enable-pam
|
|
else
|
|
LIBCGROUP_CONF_OPTS += --disable-pam
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),)
|
|
LIBCGROUP_DEPENDENCIES += musl-fts
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|