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 @@ -15,6 +15,10 @@ PHP NEWS
15
15
. Fixed bug #64441 (FILTER_VALIDATE_URL rejects fully qualified domain names).
16
16
(Syra)
17
17
18
+ - IMAP:
19
+ . Fixed bug #65721 (configure script broken in 5.5.4 and 5.4.20 when enabling
20
+ imap). (ryotakatsuki at gmail dot com)
21
+
18
22
?? ??? 2013, PHP 5.4.20
19
23
20
24
- Core:
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