Commit f4716f79 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Thomas Petazzoni
Browse files

packages: remove (non-)lfs dependencies and tweaks



Now that largefile is mandatory removes package dependencies and
conditionals.

Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent f8518c47
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
config BR2_PACKAGE_ACL
	bool "acl"
	select BR2_PACKAGE_ATTR
	depends on BR2_LARGEFILE
	help
	  POSIX Access Control Lists, which are used to define more
	  fine-grained discretionary access rights for files and
@@ -9,6 +8,3 @@ config BR2_PACKAGE_ACL
	  This package also provides libacl.

	  http://savannah.nongnu.org/projects/acl

comment "acl needs a toolchain w/ largefile"
	depends on !BR2_LARGEFILE
+2 −3
Original line number Diff line number Diff line
config BR2_PACKAGE_AIRCRACK_NG
	bool "aircrack-ng"
	depends on BR2_LARGEFILE
	depends on BR2_USE_MMU # uses fork()
	# libnl has issues when linking statically
	# they need fixing in libnl itself
@@ -13,6 +12,6 @@ config BR2_PACKAGE_AIRCRACK_NG

	  http://www.aircrack-ng.org/

comment "aircrack-ng needs a toolchain w/ largefile, threads"
comment "aircrack-ng needs a toolchain w/ threads"
	depends on BR2_USE_MMU
	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
	depends on !BR2_TOOLCHAIN_HAS_THREADS
+2 −3
Original line number Diff line number Diff line
comment "alsa-utils needs a toolchain w/ largefile, threads"
comment "alsa-utils needs a toolchain w/ threads"
	depends on BR2_USE_MMU # fork
	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
	depends on !BR2_TOOLCHAIN_HAS_THREADS

config BR2_PACKAGE_ALSA_UTILS
	bool "alsa-utils"
	depends on BR2_USE_MMU # fork
	depends on BR2_LARGEFILE
	depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib
	select BR2_PACKAGE_ALSA_LIB
	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
+0 −2
Original line number Diff line number Diff line
@@ -32,9 +32,7 @@ APR_CONF_ENV += apr_cv_pthreads_lib="-lpthread"
endif

# Fix lfs detection when cross compiling
ifeq ($(BR2_LARGEFILE),y)
APR_CONF_ENV += apr_cv_use_lfs64=yes
endif

define APR_CLEANUP_UNNEEDED_FILES
	$(RM) -rf $(TARGET_DIR)/usr/build-1/
+2 −3
Original line number Diff line number Diff line
comment "armadillo needs a toolchain w/ C++, largefile"
	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE
comment "armadillo needs a toolchain w/ C++"
	depends on !BR2_INSTALL_LIBSTDCPP
	depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) # clapack
	depends on !(BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC) # clapack
	depends on !BR2_bfin # clapack
@@ -7,7 +7,6 @@ comment "armadillo needs a toolchain w/ C++, largefile"
config BR2_PACKAGE_ARMADILLO
	bool "armadillo"
	depends on BR2_INSTALL_LIBSTDCPP
	depends on BR2_LARGEFILE # clapack
	depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) # clapack
	depends on !(BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC) # clapack
	depends on !BR2_bfin # clapack
Loading