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.

35 lines
1.2 KiB

  1. From 96465be0f4ac225cfe6f52b809c91b9496807eac Mon Sep 17 00:00:00 2001
  2. From: Michael Heimpold <mhei@heimpold.de>
  3. Date: Sun, 26 Nov 2017 18:29:42 +0100
  4. Subject: [PATCH] ext/imap/config.m4: fix ac_cv_u8t_decompose check
  5. Once upon the time, commit c58f63a38ae19caaab339c61486fc3bd7e5894f9
  6. changed the check from U8T_CANONICAL to U8T_DECOMPOSE. However,
  7. the autoconf cache id was not renamed.
  8. Sometimes it is desirable to preseed the autoconf variables, e.g. when
  9. cross-compiling to avoid the tests running on the host system. In this
  10. case it's confusing when the cache id does not match the variable to
  11. set, so let's adjust it.
  12. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
  13. ---
  14. ext/imap/config.m4 | 2 +-
  15. 1 file changed, 1 insertion(+), 1 deletion(-)
  16. diff --git a/ext/imap/config.m4 b/ext/imap/config.m4
  17. index d0b86cb..badb6e2 100644
  18. --- a/ext/imap/config.m4
  19. +++ b/ext/imap/config.m4
  20. @@ -147,7 +147,7 @@ if test "$PHP_IMAP" != "no"; then
  21. old_CFLAGS=$CFLAGS
  22. CFLAGS="-I$IMAP_INC_DIR"
  23. - AC_CACHE_CHECK(for U8T_DECOMPOSE, ac_cv_u8t_canonical,
  24. + AC_CACHE_CHECK(for U8T_DECOMPOSE, ac_cv_u8t_decompose,
  25. AC_TRY_COMPILE([
  26. #include <c-client.h>
  27. ],[
  28. --
  29. 2.7.4