]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Changed macro for .rc in ap_release.h.
authorGuenter Knauf <fuankg@apache.org>
Sun, 8 Aug 2010 12:34:05 +0000 (12:34 +0000)
committerGuenter Knauf <fuankg@apache.org>
Sun, 8 Aug 2010 12:34:05 +0000 (12:34 +0000)
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

include/ap_release.h

index ac9dcf228b65d74d5a56cb572065e5904f7cd565..9148701065071609b89d2b750d0cf1d0d754b9e5 100644 (file)
@@ -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