Skip to content

Commit 1b10e63

Browse files
mheinikic
authored andcommitted
ext/imap/config.m4: fix ac_cv_u8t_decompose check
Once upon the time, commit c58f63a changed the check from U8T_CANONICAL to U8T_DECOMPOSE. However, the autoconf cache id was not renamed. Sometimes it is desirable to preseed the autoconf variables, e.g. when cross-compiling to avoid the tests running on the host system. In this case it's confusing when the cache id does not match the variable to set, so let's adjust it. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
1 parent 1b29dc0 commit 1b10e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/imap/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ if test "$PHP_IMAP" != "no"; then
147147

148148
old_CFLAGS=$CFLAGS
149149
CFLAGS="-I$IMAP_INC_DIR"
150-
AC_CACHE_CHECK(for U8T_DECOMPOSE, ac_cv_u8t_canonical,
150+
AC_CACHE_CHECK(for U8T_DECOMPOSE, ac_cv_u8t_decompose,
151151
AC_TRY_COMPILE([
152152
#include <c-client.h>
153153
],[

0 commit comments

Comments
 (0)