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.

22 lines
641 B

  1. diff -u --recursive libgpg-error-1.32-vanilla/configure.ac libgpg-error-1.32/configure.ac
  2. --- libgpg-error-1.32-vanilla/configure.ac 2018-07-15 01:23:30.028462129 -0400
  3. +++ libgpg-error-1.32/configure.ac 2018-07-15 01:25:32.214267179 -0400
  4. @@ -74,6 +74,18 @@
  5. AC_CANONICAL_HOST
  6. AB_INIT
  7. +case "${host}" in
  8. + x86_64-openwrt-linux-gnu|i?86-openwrt-linux-gnu)
  9. + host=$(echo $host | sed 's/openwrt/pc/g')
  10. + ;;
  11. + arm-openwrt-linux-gnu)
  12. + host=arm-unknown-linux-gnueabi
  13. + ;;
  14. + *)
  15. + host=$(echo $host | sed 's/openwrt/unknown/g')
  16. + ;;
  17. +esac
  18. +
  19. # Checks for programs.
  20. AC_PROG_CC
  21. AM_PROG_CC_C_O