From: Jim Jagielski Date: Wed, 14 Dec 2011 15:29:19 +0000 (+0000) Subject: Allow for changing of string more easily... X-Git-Tag: 2.5.0-alpha~7672 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9675b7484ff476a76120290d8f3b1d716df141cd;p=thirdparty%2Fapache%2Fhttpd.git Allow for changing of string more easily... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1214296 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/ap_release.h b/include/ap_release.h index 68cca60605c..c8e1d182a10 100644 --- a/include/ap_release.h +++ b/include/ap_release.h @@ -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