25b1dc4613
Like postgreSQL (and imagemagick), parted does not build against uClibc with locales enabled, due to an uClibc bug, see http://lists.uclibc.org/pipermail/uclibc/2014-April/048326.html: In file included from atari.c:42: atari.c: In function 'atr_part_correct': atari.c:221:9: error: dereferencing pointer to incomplete type 'struct __uclibc_locale_struct' return isalnum_l(part->id[0], atr_c_locale) ^~~~~~~~~ So disable parted on uclibc Fixes: - http://autobuild.buildroot.org/results/992518d340a9f32a0721d6e66936850c4c3ef2e4 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
16 lines
447 B
Plaintext
16 lines
447 B
Plaintext
config BR2_PACKAGE_PARTED
|
|
bool "parted"
|
|
depends on BR2_ENABLE_LOCALE
|
|
depends on BR2_USE_WCHAR
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
help
|
|
parted, the GNU partition resizing program
|
|
|
|
http://www.gnu.org/software/parted/
|
|
|
|
comment "parted needs a glibc or musl toolchain w/ locale, wchar"
|
|
depends on BR2_TOOLCHAIN_USES_UCLIBC || \
|
|
!BR2_ENABLE_LOCALE || !BR2_USE_WCHAR
|