From 0a6f37a447ea60b9687644c80eb6526a5abcb68d Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Wed, 14 Dec 2011 15:29:56 +0000 Subject: [PATCH] Backport r1214296... 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ap_release.h b/include/ap_release.h index f50e0da322..34c8577ed2 100644 --- a/include/ap_release.h +++ b/include/ap_release.h @@ -47,12 +47,12 @@ #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 -- 2.50.1