Skip to content

Commit 201128d

Browse files
committed
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4: With pkgconfig < 0.28 output is a single space With pkgconfig = 0.28 output is an empty string, This breaks the test on the 2 vars
2 parents 031553c + 640e72c commit 201128d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

acinclude.m4

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2342,8 +2342,10 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[
23422342
AC_MSG_ERROR([OpenSSL version 0.9.6 or greater required.])
23432343
fi
23442344
2345-
if test -n "$OPENSSL_LIBS" && test -n "$OPENSSL_INCS"; then
2345+
if test -n "$OPENSSL_LIBS"; then
23462346
PHP_EVAL_LIBLINE($OPENSSL_LIBS, $1)
2347+
fi
2348+
if test -n "$OPENSSL_INCS"; then
23472349
PHP_EVAL_INCLINE($OPENSSL_INCS)
23482350
fi
23492351
fi

0 commit comments

Comments
 (0)