0001-ditch-unset.patch 889 B

1234567891011121314151617181920212223242526
  1. Unsetting ac_cv_{func,lib}_* is bad, you can't feed the configure cache.
  2. Terminate them with extreme prejudice.
  3. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  4. diff -Nura php-5.6.8.orig/acinclude.m4 php-5.6.8/acinclude.m4
  5. --- php-5.6.8.orig/acinclude.m4 2015-04-15 20:05:57.000000000 +0200
  6. +++ php-5.6.8/acinclude.m4 2015-05-18 20:03:50.833099001 +0200
  7. @@ -1897,8 +1897,6 @@
  8. dnl
  9. AC_DEFUN([PHP_CHECK_FUNC_LIB],[
  10. ifelse($2,,:,[
  11. - unset ac_cv_lib_$2[]_$1
  12. - unset ac_cv_lib_$2[]___$1
  13. unset found
  14. AC_CHECK_LIB($2, $1, [found=yes], [
  15. AC_CHECK_LIB($2, __$1, [found=yes], [found=no])
  16. @@ -1930,8 +1928,6 @@
  17. dnl Defines HAVE_func and HAVE_library if found and adds the library to LIBS.
  18. dnl
  19. AC_DEFUN([PHP_CHECK_FUNC],[
  20. - unset ac_cv_func_$1
  21. - unset ac_cv_func___$1
  22. unset found
  23. AC_CHECK_FUNC($1, [found=yes],[ AC_CHECK_FUNC(__$1,[found=yes],[found=no]) ])