You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by fu...@apache.org on 2010/08/05 10:18:52 UTC

svn commit: r982499 - /apr/apr/trunk/libapr.rc

Author: fuankg
Date: Thu Aug  5 08:18:52 2010
New Revision: 982499

URL: http://svn.apache.org/viewvc?rev=982499&view=rev
Log:
USe the MAJOR, MINOR, PATCH macros directly instead of the ugly macro hack.
MingW32 windres issued a couple of warnings, and Watcom wrc broke.
This version tested with MingW32, Watcom, OpenWatcom, MSVC6, MSVC7, and all
can create now a *.res warning-free.

Modified:
    apr/apr/trunk/libapr.rc

Modified: apr/apr/trunk/libapr.rc
URL: http://svn.apache.org/viewvc/apr/apr/trunk/libapr.rc?rev=982499&r1=982498&r2=982499&view=diff
==============================================================================
--- apr/apr/trunk/libapr.rc (original)
+++ apr/apr/trunk/libapr.rc Thu Aug  5 08:18:52 2010
@@ -21,8 +21,8 @@
 
 
 1 VERSIONINFO
- FILEVERSION APR_VERSION_STRING_CSV,0
- PRODUCTVERSION APR_VERSION_STRING_CSV,0
+ FILEVERSION APR_MAJOR_VERSION,APR_MINOR_VERSION,APR_PATCH_VERSION,0
+ PRODUCTVERSION APR_MAJOR_VERSION,APR_MINOR_VERSION,APR_PATCH_VERSION,0
  FILEFLAGSMASK 0x3fL
 #if defined(APR_IS_DEV_VERSION)
 #if defined(_DEBUG)