You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2013/05/13 18:30:04 UTC

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

Author: fuankg
Date: Mon May 13 16:30:04 2013
New Revision: 1481955

URL: http://svn.apache.org/r1481955
Log:
Make AP_SERVER_ADD_STRING define-able from CFLAGS.

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=1481955&r1=1481954&r2=1481955&view=diff
==============================================================================
--- httpd/httpd/trunk/include/ap_release.h (original)
+++ httpd/httpd/trunk/include/ap_release.h Mon May 13 16:30:04 2013
@@ -47,13 +47,15 @@
 #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
-#undef AP_SERVER_ADD_STRING
 #define AP_SERVER_ADD_STRING          ""
+#else
+#ifndef AP_SERVER_ADD_STRING
+#define AP_SERVER_ADD_STRING          "-dev"
+#endif
 #endif
 
 /* keep old macros as well */