You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2006/04/20 01:14:41 UTC

svn commit: r395429 - /apr/apr/branches/0.9.x/libapr.rc

Author: wrowe
Date: Wed Apr 19 16:14:39 2006
New Revision: 395429

URL: http://svn.apache.org/viewcvs?rev=395429&view=rev
Log:

  This is a VOS_DLL, not VOS_EXE.  Also designate pre-release based
  on our IS_DEV macro, and indicate NT targetted when we build NT.

Backports: 395427

Modified:
    apr/apr/branches/0.9.x/libapr.rc

Modified: apr/apr/branches/0.9.x/libapr.rc
URL: http://svn.apache.org/viewcvs/apr/apr/branches/0.9.x/libapr.rc?rev=395429&r1=395428&r2=395429&view=diff
==============================================================================
--- apr/apr/branches/0.9.x/libapr.rc (original)
+++ apr/apr/branches/0.9.x/libapr.rc Wed Apr 19 16:14:39 2006
@@ -30,13 +30,25 @@
  FILEVERSION APR_VERSION_STRING_CSV,0
  PRODUCTVERSION APR_VERSION_STRING_CSV,0
  FILEFLAGSMASK 0x3fL
+#if defined(APR_IS_DEV_VERSION)
+#if defined(_DEBUG)
+ FILEFLAGS 0x03L
+#else
+ FILEFLAGS 0x02L
+#endif
+#else
 #if defined(_DEBUG)
  FILEFLAGS 0x01L
 #else
  FILEFLAGS 0x00L
 #endif
+#endif
+#if defined(WINNT) || defined(WIN64)
  FILEOS 0x40004L
- FILETYPE 0x1L
+#else
+ FILEOS 0x4L
+#endif
+ FILETYPE 0x2L
  FILESUBTYPE 0x0L
 BEGIN
   BLOCK "StringFileInfo"