From: Guenter Knauf Date: Sun, 8 Aug 2010 12:34:05 +0000 (+0000) Subject: Changed macro for .rc in ap_release.h. X-Git-Tag: 2.3.7~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e33eecb540965a4f2f65fda14975e52e581d3fe;p=thirdparty%2Fapache%2Fhttpd.git Changed macro for .rc in ap_release.h. MingW32 windres issued a couple of warnings, and Watcom wrc broke with this macro. This version tested with MingW32, Watcom, OpenWatcom, MSVC6, MSVC7, and all can create now a *.res warning-free. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@983401 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/ap_release.h b/include/ap_release.h index ac9dcf228b6..91487010650 100644 --- a/include/ap_release.h +++ b/include/ap_release.h @@ -66,8 +66,8 @@ #define AP_SERVER_VERSION AP_SERVER_BASEVERSION /* macro for Win32 .rc files using numeric csv representation */ -#define AP_SERVER_PATCHLEVEL_CSV AP_SERVER_MAJORVERSION_NUMBER ##, \ - ##AP_SERVER_MINORVERSION_NUMBER ##, \ - ##AP_SERVER_PATCHLEVEL_NUMBER +#define AP_SERVER_PATCHLEVEL_CSV AP_SERVER_MAJORVERSION_NUMBER, \ + AP_SERVER_MINORVERSION_NUMBER, \ + AP_SERVER_PATCHLEVEL_NUMBER #endif