1#include "apr_version.h"
2
3#define APR_LICENSE \
4  "Licensed to the Apache Software Foundation (ASF) under one or more " \
5  "contributor license agreements.  See the NOTICE file distributed with " \
6  "this work for additional information regarding copyright ownership.  " \
7  "The ASF licenses this file to You under the Apache License, Version 2.0 " \
8  "(the ""License""); you may not use this file except in compliance with " \
9  "the License.  You may obtain a copy of the License at\r\n\r\n" \
10  "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \
11  "Unless required by applicable law or agreed to in writing, software " \
12  "distributed under the License is distributed on an ""AS IS"" BASIS, " \
13  "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  " \
14  "See the License for the specific language governing permissions and " \
15  "limitations under the License."
16
17#define APR_DLL_BASENAME "libapr-" APR_STRINGIFY(APR_MAJOR_VERSION)
18
19
201 VERSIONINFO
21 FILEVERSION APR_VERSION_STRING_CSV,0
22 PRODUCTVERSION APR_VERSION_STRING_CSV,0
23 FILEFLAGSMASK 0x3fL
24#if defined(APR_IS_DEV_VERSION)
25#if defined(_DEBUG)
26 FILEFLAGS 0x03L
27#else
28 FILEFLAGS 0x02L
29#endif
30#else
31#if defined(_DEBUG)
32 FILEFLAGS 0x01L
33#else
34 FILEFLAGS 0x00L
35#endif
36#endif
37#if defined(WINNT) || defined(WIN64)
38 FILEOS 0x40004L
39#else
40 FILEOS 0x4L
41#endif
42 FILETYPE 0x2L
43 FILESUBTYPE 0x0L
44BEGIN
45  BLOCK "StringFileInfo"
46  BEGIN
47    BLOCK "040904b0"
48    BEGIN
49      VALUE "Comments", APR_LICENSE "\0"
50      VALUE "CompanyName", "Apache Software Foundation\0"
51      VALUE "FileDescription", "Apache Portable Runtime Library\0"
52      VALUE "FileVersion", APR_VERSION_STRING "\0"
53      VALUE "InternalName", APR_DLL_BASENAME "\0"
54      VALUE "LegalCopyright", APR_COPYRIGHT "\0"
55      VALUE "OriginalFilename", APR_DLL_BASENAME ".dll\0"
56      VALUE "ProductName", "Apache Portable Runtime Project\0"
57      VALUE "ProductVersion", APR_VERSION_STRING "\0"
58    END
59  END
60  BLOCK "VarFileInfo"
61  BEGIN
62    VALUE "Translation", 0x409, 1200
63  END
64END
65