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