libapr.rc 2.1 KB

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