1#include "apu_version.h"
2
3#define APU_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#ifdef DLL_NAME
18#define APU_DLL_BASENAME APU_STRINGIFY(DLL_NAME) "-" APU_STRINGIFY(APU_MAJOR_VERSION)
19#define APU_DLL_DESCRIPTION "Apache Portable Runtime " APU_STRINGIFY(DLL_NAME) " Module"
20#else
21#define APU_DLL_BASENAME "libaprutil-" APU_STRINGIFY(APU_MAJOR_VERSION)
22#define APU_DLL_DESCRIPTION "Apache Portable Runtime Utility Library"
23#endif
24
251 VERSIONINFO
26 FILEVERSION APU_VERSION_STRING_CSV,0
27 PRODUCTVERSION APU_VERSION_STRING_CSV,0
28 FILEFLAGSMASK 0x3fL
29#if defined(APU_IS_DEV_VERSION)
30#if defined(_DEBUG)
31 FILEFLAGS 0x03L
32#else
33 FILEFLAGS 0x02L
34#endif
35#else
36#if defined(_DEBUG)
37 FILEFLAGS 0x01L
38#else
39 FILEFLAGS 0x00L
40#endif
41#endif
42#if defined(WINNT) || defined(WIN64)
43 FILEOS 0x40004L
44#else
45 FILEOS 0x4L
46#endif
47 FILETYPE 0x2L
48 FILESUBTYPE 0x0L
49BEGIN
50  BLOCK "StringFileInfo"
51  BEGIN
52    BLOCK "040904b0"
53    BEGIN
54      VALUE "Comments", APU_LICENSE "\0"
55      VALUE "CompanyName", "Apache Software Foundation\0"
56      VALUE "FileDescription", APU_DLL_DESCRIPTION "\0"
57      VALUE "FileVersion", APU_VERSION_STRING "\0"
58      VALUE "InternalName", APU_DLL_BASENAME "\0"
59      VALUE "LegalCopyright", APU_COPYRIGHT "\0"
60      VALUE "OriginalFilename", APU_DLL_BASENAME ".dll\0"
61      VALUE "ProductName", "Apache Portable Runtime Project\0"
62      VALUE "ProductVersion", APU_VERSION_STRING "\0"
63    END
64  END
65  BLOCK "VarFileInfo"
66  BEGIN
67    VALUE "Translation", 0x409, 1200
68  END
69END
70