Skip to content

Commit 3f64d35

Browse files
committed
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4: Fix the broken sh syntax in ext/imap/config.m4.
2 parents 8f146c2 + cc66eaa commit 3f64d35

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ PHP NEWS
1717
. Ensure that the defined interpolation method is used with the generic
1818
scaling methods. (Pierre)
1919

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+
2024
- OPcache:
2125
. Fixed bug #65665 (Exception not properly caught when opcache enabled).
2226
(Laruence)

ext/imap/config.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,9 @@ if test "$PHP_IMAP" != "no"; then
198198
AC_MSG_ERROR(Cannot find rfc822.h. Please check your c-client installation.)
199199
fi
200200

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
202202
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
204204
ln -s "$IMAP_DIR/$PHP_LIBDIR/c-client.a" "$IMAP_DIR/$PHP_LIBDIR/libc-client.a" >/dev/null 2>&1
205205
fi
206206

0 commit comments

Comments
 (0)