libapr.rc 2.1 KB

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