Blame libaprutil.rc

Packit 383869
#include "apu_version.h"
Packit 383869
Packit 383869
#define APU_LICENSE \
Packit 383869
  "Licensed to the Apache Software Foundation (ASF) under one or more " \
Packit 383869
  "contributor license agreements.  See the NOTICE file distributed with " \
Packit 383869
  "this work for additional information regarding copyright ownership.  " \
Packit 383869
  "The ASF licenses this file to You under the Apache License, Version 2.0 " \
Packit 383869
  "(the ""License""); you may not use this file except in compliance with " \
Packit 383869
  "the License.  You may obtain a copy of the License at\r\n\r\n" \
Packit 383869
  "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \
Packit 383869
  "Unless required by applicable law or agreed to in writing, software " \
Packit 383869
  "distributed under the License is distributed on an ""AS IS"" BASIS, " \
Packit 383869
  "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  " \
Packit 383869
  "See the License for the specific language governing permissions and " \
Packit 383869
  "limitations under the License."
Packit 383869
Packit 383869
#ifdef DLL_NAME
Packit 383869
#define APU_DLL_BASENAME APU_STRINGIFY(DLL_NAME) "-" APU_STRINGIFY(APU_MAJOR_VERSION)
Packit 383869
#define APU_DLL_DESCRIPTION "Apache Portable Runtime " APU_STRINGIFY(DLL_NAME) " Module"
Packit 383869
#else
Packit 383869
#define APU_DLL_BASENAME "libaprutil-" APU_STRINGIFY(APU_MAJOR_VERSION)
Packit 383869
#define APU_DLL_DESCRIPTION "Apache Portable Runtime Utility Library"
Packit 383869
#endif
Packit 383869
Packit 383869
1 VERSIONINFO
Packit 383869
 FILEVERSION APU_VERSION_STRING_CSV,0
Packit 383869
 PRODUCTVERSION APU_VERSION_STRING_CSV,0
Packit 383869
 FILEFLAGSMASK 0x3fL
Packit 383869
#if defined(APU_IS_DEV_VERSION)
Packit 383869
#if defined(_DEBUG)
Packit 383869
 FILEFLAGS 0x03L
Packit 383869
#else
Packit 383869
 FILEFLAGS 0x02L
Packit 383869
#endif
Packit 383869
#else
Packit 383869
#if defined(_DEBUG)
Packit 383869
 FILEFLAGS 0x01L
Packit 383869
#else
Packit 383869
 FILEFLAGS 0x00L
Packit 383869
#endif
Packit 383869
#endif
Packit 383869
#if defined(WINNT) || defined(WIN64)
Packit 383869
 FILEOS 0x40004L
Packit 383869
#else
Packit 383869
 FILEOS 0x4L
Packit 383869
#endif
Packit 383869
 FILETYPE 0x2L
Packit 383869
 FILESUBTYPE 0x0L
Packit 383869
BEGIN
Packit 383869
  BLOCK "StringFileInfo"
Packit 383869
  BEGIN
Packit 383869
    BLOCK "040904b0"
Packit 383869
    BEGIN
Packit 383869
      VALUE "Comments", APU_LICENSE "\0"
Packit 383869
      VALUE "CompanyName", "Apache Software Foundation\0"
Packit 383869
      VALUE "FileDescription", APU_DLL_DESCRIPTION "\0"
Packit 383869
      VALUE "FileVersion", APU_VERSION_STRING "\0"
Packit 383869
      VALUE "InternalName", APU_DLL_BASENAME "\0"
Packit 383869
      VALUE "LegalCopyright", APU_COPYRIGHT "\0"
Packit 383869
      VALUE "OriginalFilename", APU_DLL_BASENAME ".dll\0"
Packit 383869
      VALUE "ProductName", "Apache Portable Runtime Project\0"
Packit 383869
      VALUE "ProductVersion", APU_VERSION_STRING "\0"
Packit 383869
    END
Packit 383869
  END
Packit 383869
  BLOCK "VarFileInfo"
Packit 383869
  BEGIN
Packit 383869
    VALUE "Translation", 0x409, 1200
Packit 383869
  END
Packit 383869
END