Skip to content

Commit

Permalink
Merge branch 'PHP-5.4' into PHP-5.5
Browse files Browse the repository at this point in the history
* PHP-5.4:
  Fix bug #65088 (Generated configure script is malformed on OpenBSD).
  • Loading branch information
LawnGnome committed Jun 23, 2013
2 parents fc898ee + 2531307 commit 296a12e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2013, PHP 5.5.1

- Core:
. Fixed bug #65088 (Generated configure script is malformed on OpenBSD).
(Adam)

- CLI server:
. Fixed bug #65066 (Cli server not responsive when responding with 422 http
status code). (Adam)

- GD
. Fixed #65070 (bgcolor does not use the same format as the input image with
imagerotate). (Pierre)
Expand Down
6 changes: 3 additions & 3 deletions acinclude.m4
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ AC_DEFUN([PHP_EXPAND_PATH],[
$2=$1
else
changequote({,})
ep_dir="`echo $1|$SED 's%/*[^/][^/]*/*$%%'`"
ep_dir=`echo $1|$SED 's%/*[^/][^/]*/*$%%'`
changequote([,])
ep_realdir="`(cd \"$ep_dir\" && pwd)`"
$2="$ep_realdir/`basename \"$1\"`"
ep_realdir=`(cd "$ep_dir" && pwd)`
$2="$ep_realdir"/`basename "$1"`
fi
])

Expand Down

0 comments on commit 296a12e

Please sign in to comment.