]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Allow for changing of string more easily...
authorJim Jagielski <jim@apache.org>
Wed, 14 Dec 2011 15:29:19 +0000 (15:29 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 14 Dec 2011 15:29:19 +0000 (15:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1214296 13f79535-47bb-0310-9956-ffa450edef68

include/ap_release.h

index 68cca60605cd0112be6146ea3bc0d10ea4e91a89..c8e1d182a10ba4f6ebda00e9566410d0d77e7375 100644 (file)
 #define AP_SERVER_MINORVERSION_NUMBER 5
 #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