Commit 161c6aaf authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Thomas Petazzoni
Browse files

package/uClibc: RIP, avr32

parent 608060ca
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -4,8 +4,6 @@ config BR2_PACKAGE_AICCU
	depends on BR2_USE_WCHAR
	depends on BR2_TOOLCHAIN_HAS_THREADS
	depends on BR2_USE_MMU # fork()
	# Uses dn_skipname(), only available since 0.9.33
	depends on !BR2_UCLIBC_VERSION_0_9_31
	# Triggers the _gp link issue
	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305
	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405
+2 −4
Original line number Diff line number Diff line
@@ -7,10 +7,8 @@ config BR2_PACKAGE_FIO
	# release of uClibc, but is part of uClibc Git, and backported
	# in Buildroot patch set of uClibc 0.9.33. Therefore, we
	# disable the build of fio for external uClibc toolchains
	# (which use an unknown uClibc version) and for 0.9.31 which
	# don't have posix_madvise().
	depends on !BR2_TOOLCHAIN_EXTERNAL_UCLIBC && \
		!BR2_UCLIBC_VERSION_0_9_31
	# (which use an unknown uClibc version)
	depends on !BR2_TOOLCHAIN_EXTERNAL_UCLIBC
	# fio uses fallocate() which becomes fallocate64() while compiling
	# with BR2_LARGEFILE but fallocate64() is not available on nios2
	depends on !BR2_nios2
+0 −2
Original line number Diff line number Diff line
@@ -2,8 +2,6 @@ config BR2_PACKAGE_IPUTILS
	bool "iputils"
	select BR2_PACKAGE_OPENSSL if BR2_INET_IPV6
	depends on BR2_USE_MMU # fork()
	# requires dn_comp (only available in since uclibc 0.9.33)
	depends on !BR2_UCLIBC_VERSION_0_9_31
	help
	  This package is set of small useful utilities for Linux networking.
	  It includes complete versions of ping, traceroute, etc.
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ LIBGLIB2_CONF_ENV = \
	gt_cv_c_wchar_t=$(if $(BR2_USE_WCHAR),yes,no)

# old uClibc versions don't provide qsort_r
ifeq ($(BR2_UCLIBC_VERSION_0_9_31)$(BR2_TOOLCHAIN_EXTERNAL_UCLIBC)$(BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_V2)$(BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_V2),y)
ifeq ($(BR2_TOOLCHAIN_EXTERNAL_UCLIBC)$(BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEEL_V2)$(BR2_TOOLCHAIN_EXTERNAL_XILINX_MICROBLAZEBE_V2),y)
LIBGLIB2_CONF_ENV += glib_cv_have_qsort_r=no
else
LIBGLIB2_CONF_ENV += glib_cv_have_qsort_r=yes
+0 −2
Original line number Diff line number Diff line
config BR2_PACKAGE_MTR
	bool "mtr"
	# res_mkquery() only available in 0.9.33+
	depends on !BR2_UCLIBC_VERSION_0_9_31
	help
	  mtr combines the functionality of the 'traceroute' and 'ping'
	  programs in a single network diagnostic tool.
Loading