From: Anil Madhavapeddy Date: Fri, 28 Jun 2002 16:47:36 +0000 (+0000) Subject: remember the value of ext_shared passed into the --with-pdflib, since it X-Git-Tag: php-4.3.0dev_zend2_alpha2~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed6b43582ecc70b5aeced245d5c07af6529efda4;p=php remember the value of ext_shared passed into the --with-pdflib, since it gets overwritten by future PHP_ARG_WITH checks in the same m4 fragment from wilfried@openbsd.org --- diff --git a/ext/pdf/config.m4 b/ext/pdf/config.m4 index a41bffb235..3145d9b0e5 100644 --- a/ext/pdf/config.m4 +++ b/ext/pdf/config.m4 @@ -4,6 +4,7 @@ dnl PHP_ARG_WITH(pdflib,for PDFlib support, [ --with-pdflib[=DIR] Include PDFlib support.]) +remember_ext_shared=$ext_shared if test "$PHP_PDFLIB" != "no"; then @@ -86,6 +87,7 @@ if test "$PHP_PDFLIB" != "no"; then dnl # The main PDFlib configure dnl # + ext_shared=$remember_ext_shared case $PHP_PDFLIB in yes) AC_CHECK_LIB(pdf, PDF_show_boxed, [ @@ -122,3 +124,4 @@ See config.log for more information. ;; esac fi +