summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-08-02 22:28:18 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-08-02 22:28:18 +0000
commit56a947a3f7c2aadafb3a91c287330d1a270cb238 (patch)
tree80eef1d7215f0a22bed814fb6852e37de89c0b3a
parent00b3df2ad3f3902d85dc26c7fe088d23afd3417b (diff)
downloadphp-git-56a947a3f7c2aadafb3a91c287330d1a270cb238.tar.gz
Back to dev
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 5 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 110045b040..fe7cf7fd6e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,7 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+?? Aug 2007, PHP 5.2.4
+
02 Aug 2007, PHP 5.2.4RC1
- Removed --enable-versioning configure option. (Jani)
diff --git a/configure.in b/configure.in
index 45a169d2dc..d493c8907c 100644
--- a/configure.in
+++ b/configure.in
@@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=2
PHP_RELEASE_VERSION=4
-PHP_EXTRA_VERSION="RC1"
+PHP_EXTRA_VERSION="RC1-dev"
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index 428d26f044..8704763b3a 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 2
#define PHP_RELEASE_VERSION 4
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.2.4RC1"
+#define PHP_EXTRA_VERSION "RC1-dev"
+#define PHP_VERSION "5.2.4RC1-dev"
#define PHP_VERSION_ID 50204