bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / srclib / apr-util / libaprutil.rc
1 #include "apr_general.h"
2 #include "apu_version.h"
3
4 #define APR_COPYRIGHT "Copyright (c) 2010 The Apache Software " \
5                       "Foundation or its licensors, as applicable."
6
7 #define APR_LICENSE "Licensed under the Apache License, Version 2.0 " \
8                     "(the ""License""); you may not use this file except " \
9                     "in compliance with the License.  You may obtain a " \
10                     "copy of the License at\r\n\r\n" \
11                     "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \
12                     "Unless required by applicable law or agreed to in " \
13                     "writing, software distributed under the License is " \
14                     "distributed on an ""AS IS"" BASIS, WITHOUT " \
15                     "WARRANTIES OR CONDITIONS OF ANY KIND, either " \
16                     "express or implied.  See the License for the " \
17                     "specific language governing permissions and " \
18                     "limitations under the License."
19
20 #define APU_DLL_BASENAME "libaprutil"
21
22 /** An alternative formatted string of APR's version */
23 /* macro for Win32 .rc files using numeric csv representation */
24 #define APU_VERSION_STRING_CSV APU_MAJOR_VERSION ##, \
25                              ##APU_MINOR_VERSION ##, \
26                              ##APU_PATCH_VERSION
27
28
29 1 VERSIONINFO
30  FILEVERSION APU_VERSION_STRING_CSV,0
31  PRODUCTVERSION APU_VERSION_STRING_CSV,0
32  FILEFLAGSMASK 0x3fL
33 #if defined(APU_IS_DEV_VERSION)
34 #if defined(_DEBUG)
35  FILEFLAGS 0x03L
36 #else
37  FILEFLAGS 0x02L
38 #endif
39 #else
40 #if defined(_DEBUG)
41  FILEFLAGS 0x01L
42 #else
43  FILEFLAGS 0x00L
44 #endif
45 #endif
46 #if defined(WINNT) || defined(WIN64)
47  FILEOS 0x40004L
48 #else
49  FILEOS 0x4L
50 #endif
51  FILETYPE 0x2L
52  FILESUBTYPE 0x0L
53 BEGIN
54   BLOCK "StringFileInfo"
55   BEGIN
56     BLOCK "040904b0"
57     BEGIN
58       VALUE "Comments", APR_LICENSE "\0"
59       VALUE "CompanyName", "Apache Software Foundation\0"
60       VALUE "FileDescription", "Apache Portable Runtime Utility Library\0"
61       VALUE "FileVersion", APU_VERSION_STRING "\0"
62       VALUE "InternalName", APU_DLL_BASENAME "\0"
63       VALUE "LegalCopyright", APR_COPYRIGHT "\0"
64       VALUE "OriginalFilename", APU_DLL_BASENAME ".dll\0"
65       VALUE "ProductName", "Apache Portable Runtime Project\0"
66       VALUE "ProductVersion", APU_VERSION_STRING "\0"
67     END
68   END
69   BLOCK "VarFileInfo"
70   BEGIN
71     VALUE "Translation", 0x409, 1200
72   END
73 END