You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2011/12/14 16:29:19 UTC

svn commit: r1214296 - /httpd/httpd/trunk/include/ap_release.h

Author: jim
Date: Wed Dec 14 15:29:19 2011
New Revision: 1214296

URL: http://svn.apache.org/viewvc?rev=1214296&view=rev
Log:
Allow for changing of string more easily...

Modified:
    httpd/httpd/trunk/include/ap_release.h

Modified: httpd/httpd/trunk/include/ap_release.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/ap_release.h?rev=1214296&r1=1214295&r2=1214296&view=diff
==============================================================================
--- httpd/httpd/trunk/include/ap_release.h (original)
+++ httpd/httpd/trunk/include/ap_release.h Wed Dec 14 15:29:19 2011
@@ -47,12 +47,12 @@
 #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