summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-03-29 00:09:34 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-03-29 00:09:34 +0000
commit1af4d7724f16855ac96fcea52029508c1239b3db (patch)
tree64200bf1ff2c6b40d06f9bbc27aa20dde743b283
parent7e941eefe8dd6b4f1f83bc70cdfec6e480f8f0cc (diff)
downloadphp-git-1af4d7724f16855ac96fcea52029508c1239b3db.tar.gz
Fixed bug #27732 (Fixed compilation bug inside php_sab_info.h).
-rw-r--r--NEWS1
-rw-r--r--ext/xslt/config.m42
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index a11481b249..1dfca4c398 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
PHP 4 NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2004, Version 4.3.6
+- Fixed bug #27732 (Fixed compilation bug inside php_sab_info.h). (Ilia)
- Fixed bug #27719 (mktime issues on and around DST changeover). (Rasmus)
- Fixed bug #27717 (Test Failures when compiled on 64-bit mode). (Ard, Derick)
- Fixed bug #27687 (Bug Adding Default Charset to 'text/*' Content-Type
diff --git a/ext/xslt/config.m4 b/ext/xslt/config.m4
index 4edabe678e..4e4ced285c 100644
--- a/ext/xslt/config.m4
+++ b/ext/xslt/config.m4
@@ -67,7 +67,7 @@ if test "$PHP_XSLT" != "no"; then
SABINF_CFLAGS=`$XSLT_DIR/bin/sablot-config --cflags`
SABINF_LIBS=`$XSLT_DIR/bin/sablot-config --libs`
SABINF_PREFIX=`$XSLT_DIR/bin/sablot-config --prefix`
- SABINF_ALL="\"Cflags: $SABINF_CFLAGS\nLibs: $SABINF_LIBS\nPrefix: $SABINF_PREFIX\""
+ SABINF_ALL="\"Cflags: $SABINF_CFLAGS Libs: $SABINF_LIBS Prefix: $SABINF_PREFIX\""
PHP_DEFINE(SAB_INFO, "$SABINF_ALL")
else
AC_MSG_RESULT(not found)