~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to srclib/apr-util/libaprutil.rc

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "apu_version.h"
 
2
 
 
3
#define APU_COPYRIGHT "Copyright 2000-2005 The Apache Software " \
 
4
                      "Foundation or its licensors, as applicable."
 
5
 
 
6
#define APU_LICENSE "Licensed under the Apache License, Version 2.0 " \
 
7
                    "(the ""License""); you may not use this file except " \
 
8
                    "in compliance with the License.  You may obtain a " \
 
9
                    "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 " \
 
12
                    "writing, software distributed under the License is " \
 
13
                    "distributed on an ""AS IS"" BASIS, WITHOUT " \
 
14
                    "WARRANTIES OR CONDITIONS OF ANY KIND, either " \
 
15
                    "express or implied.  See the License for the " \
 
16
                    "specific language governing permissions and " \
 
17
                    "limitations under the License."
 
18
 
 
19
#define APU_DLL_BASENAME "libaprutil-" APU_STRINGIFY(APU_MAJOR_VERSION)
 
20
 
 
21
 
 
22
1 VERSIONINFO
 
23
 FILEVERSION APU_VERSION_STRING_CSV,0
 
24
 PRODUCTVERSION APU_VERSION_STRING_CSV,0
 
25
 FILEFLAGSMASK 0x3fL
 
26
#if defined(_DEBUG)
 
27
 FILEFLAGS 0x01L
 
28
#else
 
29
 FILEFLAGS 0x00L
 
30
#endif
 
31
 FILEOS 0x40004L
 
32
 FILETYPE 0x1L
 
33
 FILESUBTYPE 0x0L
 
34
BEGIN
 
35
  BLOCK "StringFileInfo"
 
36
  BEGIN
 
37
    BLOCK "040904b0"
 
38
    BEGIN
 
39
    VALUE "Comments", APU_LICENSE "\0"
 
40
      VALUE "CompanyName", "Apache Software Foundation\0"
 
41
      VALUE "FileDescription", "Apache Portable Runtime Library\0"
 
42
      VALUE "FileVersion", APU_VERSION_STRING "\0"
 
43
      VALUE "InternalName", APU_DLL_BASENAME "\0"
 
44
      VALUE "LegalCopyright", APU_COPYRIGHT "\0"
 
45
      VALUE "OriginalFilename", APU_DLL_BASENAME ".dll\0"
 
46
      VALUE "ProductName", "Apache Portable Runtime Project\0"
 
47
      VALUE "ProductVersion", APU_VERSION_STRING "\0"
 
48
    END
 
49
  END
 
50
  BLOCK "VarFileInfo"
 
51
  BEGIN
 
52
    VALUE "Translation", 0x409, 1200
 
53
  END
 
54
END