]> granicus.if.org Git - apache/commitdiff
Backport r1214296...
authorJim Jagielski <jim@apache.org>
Wed, 14 Dec 2011 15:29:56 +0000 (15:29 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 14 Dec 2011 15:29:56 +0000 (15:29 +0000)
Allow AP_SERVER_ADD_STRING to be more "easily" changed

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1214297 13f79535-47bb-0310-9956-ffa450edef68

include/ap_release.h

index f50e0da32248edd8aa088835718fd35037a6e7fb..34c8577ed29831359d1bfc0b7ebedb22ef7582da 100644 (file)
 #define AP_SERVER_MINORVERSION_NUMBER 4
 #define AP_SERVER_PATCHLEVEL_NUMBER   0
 #define AP_SERVER_DEVBUILD_BOOLEAN    1
+#define AP_SERVER_ADD_STRING          "-dev"
 
 /* Synchronize the above with docs/manual/style/version.ent */
 
-#if AP_SERVER_DEVBUILD_BOOLEAN
-#define AP_SERVER_ADD_STRING          "-dev"
-#else
+#if !AP_SERVER_DEVBUILD_BOOLEAN
+#undef AP_SERVER_ADD_STRING
 #define AP_SERVER_ADD_STRING          ""
 #endif