buildrootschalter/package/bdwgc/Config.in
Peter Korsgaard b2ba4b31b3 bdwgc: fix _ARCH_SUPPORTS kconfig warning
We have to define it as a bool, otherwise kconfig complains with:

package/bdwgc/Config.in:1:warning: config symbol defined without type

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-12-03 09:45:40 +01:00

19 lines
544 B
Plaintext

config BR2_PACKAGE_BDWGC_ARCH_SUPPORTS
bool
default y
depends on BR2_arm || BR2_armeb || BR2_avr32 || BR2_i386 \
|| BR2_mips || BR2_mipsel || BR2_powerpc || BR2_sh \
|| BR2_sparc || BR2_x86_64
config BR2_PACKAGE_BDWGC
bool "bdwgc"
depends on BR2_PACKAGE_BDWGC_ARCH_SUPPORTS
depends on BR2_PACKAGE_LIBATOMIC_ARCH_SUPPORTS
select BR2_PACKAGE_LIBATOMIC_OPS
help
The Boehm-Demers-Weiser conservative garbage collector can
be used as a garbage collecting replacement for C 'malloc'
or C++ 'new'.
http://www.hboehm.info/gc/