patch-configure 524 B

1234567891011121314151617181920
  1. $OpenBSD: patch-configure,v 1.12 2017/05/01 16:25:20 jca Exp $
  2. --- configure.orig Thu Apr 20 17:50:43 2017
  3. +++ configure Mon Apr 24 05:05:09 2017
  4. @@ -9530,7 +9530,14 @@ case "$opsys" in
  5. openbsd)
  6. ## Han Boetes <han@boetes.org> says this is necessary,
  7. ## otherwise Emacs dumps core on elf systems.
  8. - LD_SWITCH_SYSTEM="-Z"
  9. + ## Enable only where necessary.
  10. + case $host_cpu in
  11. + x86_64|sparc64|arm|aarch64)
  12. + ;;
  13. + powerpc|mips64el|*)
  14. + LD_SWITCH_SYSTEM="-Z"
  15. + ;;
  16. + esac
  17. ;;
  18. esac