mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
451 B

  1. if pkgcheck uclibc; then
  2. menu_begin MENU_PKG_UCLIBC 'uClibc (the microcontroller C Library) Options'
  3. if [ -z "$ROCKCFG_PKG_UCLIBC_USEIT" ]; then
  4. if pkgcheck uclibc X; then
  5. ROCKCFG_PKG_UCLIBC_USEIT=1
  6. else
  7. ROCKCFG_PKG_UCLIBC_USEIT=0
  8. fi
  9. fi
  10. bool 'Use uClibc instead of fat glibc' \
  11. ROCKCFG_PKG_UCLIBC_USEIT 0
  12. if [ "$ROCKCFG_PKG_UCLIBC_USEIT" == "1" ]; then
  13. pkgenable uclibc
  14. pkgdisable 'glibc2[23]'
  15. fi
  16. menu_end
  17. fi