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
This commit is contained in:
Guenter Knauf
2010-08-08 12:34:05 +00:00
parent 8bfe3c4791
commit 0e33eecb54

View File

@ -66,8 +66,8 @@
#define AP_SERVER_VERSION AP_SERVER_BASEVERSION #define AP_SERVER_VERSION AP_SERVER_BASEVERSION
/* macro for Win32 .rc files using numeric csv representation */ /* macro for Win32 .rc files using numeric csv representation */
#define AP_SERVER_PATCHLEVEL_CSV AP_SERVER_MAJORVERSION_NUMBER ##, \ #define AP_SERVER_PATCHLEVEL_CSV AP_SERVER_MAJORVERSION_NUMBER, \
##AP_SERVER_MINORVERSION_NUMBER ##, \ AP_SERVER_MINORVERSION_NUMBER, \
##AP_SERVER_PATCHLEVEL_NUMBER AP_SERVER_PATCHLEVEL_NUMBER
#endif #endif