File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ PHP NEWS
17
17
. Ensure that the defined interpolation method is used with the generic
18
18
scaling methods. (Pierre)
19
19
20
+ - IMAP:
21
+ . Fixed bug #65721 (configure script broken in 5.5.4 and 5.4.20 when enabling
22
+ imap). (ryotakatsuki at gmail dot com)
23
+
20
24
- OPcache:
21
25
. Fixed bug #65665 (Exception not properly caught when opcache enabled).
22
26
(Laruence)
Original file line number Diff line number Diff line change @@ -198,9 +198,9 @@ if test "$PHP_IMAP" != "no"; then
198
198
AC_MSG_ERROR ( Cannot find rfc822.h. Please check your c-client installation. )
199
199
fi
200
200
201
- if test ! -r "$IMAP_DIR/c-client/libc-client.a" && -r "$IMAP_DIR/c-client/c-client.a" ; then
201
+ if test ! -r "$IMAP_DIR/c-client/libc-client.a" && test -r "$IMAP_DIR/c-client/c-client.a" ; then
202
202
ln -s "$IMAP_DIR/c-client/c-client.a" "$IMAP_DIR/c-client/libc-client.a" >/dev/null 2>&1
203
- elif test ! -r "$IMAP_DIR/$PHP_LIBDIR/libc-client.a" && -r "$IMAP_DIR/$PHP_LIBDIR/c-client.a"; then
203
+ elif test ! -r "$IMAP_DIR/$PHP_LIBDIR/libc-client.a" && test -r "$IMAP_DIR/$PHP_LIBDIR/c-client.a"; then
204
204
ln -s "$IMAP_DIR/$PHP_LIBDIR/c-client.a" "$IMAP_DIR/$PHP_LIBDIR/libc-client.a" >/dev/null 2>&1
205
205
fi
206
206
You can’t perform that action at this time.
0 commit comments