Corrected DLL name in W32 resources.

This commit is contained in:
Evgeny Grin (Karlson2k)
2017-11-25 20:50:05 +03:00
parent 8c8f7c9614
commit 91dedbf195
3 changed files with 8 additions and 6 deletions
+2
View File
@@ -75,9 +75,11 @@ AS_IF([[test "x$lt_sysroot" != "x" && test "x$SYSROOT" = "x"]], [[SYSROOT="$lt_s
PACKAGE_VERSION_MAJOR='m4_car(m4_unquote(m4_split(AC_PACKAGE_VERSION, [\.])))'
PACKAGE_VERSION_MINOR='m4_argn(2, m4_unquote(m4_split(AC_PACKAGE_VERSION, [\.])))'
PACKAGE_VERSION_SUBMINOR='m4_argn(3, m4_unquote(m4_split(AC_PACKAGE_VERSION, [\.])))'
AS_VAR_ARITH([MHD_W32_DLL_SUFF],[[$LIB_VERSION_CURRENT - $LIB_VERSION_AGE]])
AC_SUBST([PACKAGE_VERSION_MAJOR])
AC_SUBST([PACKAGE_VERSION_MINOR])
AC_SUBST([PACKAGE_VERSION_SUBMINOR])
AC_SUBST([MHD_W32_DLL_SUFF])
AC_CONFIG_FILES([src/microhttpd/microhttpd_dll_res.rc])
MHD_LIB_CPPFLAGS=""
+3 -3
View File
@@ -19,11 +19,11 @@ BEGIN
VALUE "ProductName", "GNU libmicrohttpd\0"
VALUE "ProductVersion", "@PACKAGE_VERSION@\0"
VALUE "FileVersion", "@PACKAGE_VERSION@\0"
VALUE "FileDescription", "GNU libmicrohttpd dll for Windows (GCC build)\0"
VALUE "FileDescription", "GNU libmicrohttpd DLL for Windows (MinGW build)\0"
VALUE "InternalName", "libmicrohttpd\0"
VALUE "OriginalFilename", "libmicrohttpd.dll\0"
VALUE "OriginalFilename", "libmicrohttpd-@MHD_W32_DLL_SUFF@.dll\0"
VALUE "CompanyName", "Free Software Foundation\0"
VALUE "LegalCopyright", "Copyright (C) 2007-2015 Christian Grothoff and project contributors\0"
VALUE "LegalCopyright", "Copyright (C) 2007-2017 Christian Grothoff and project contributors\0"
VALUE "Comments", "http://www.gnu.org/software/libmicrohttpd/\0"
END
END
+3 -3
View File
@@ -26,12 +26,12 @@ BEGIN
VALUE "FileDescription", "GNU libmicrohttpd dll for Windows (VC build)\0"
VALUE "InternalName", "libmicrohttpd\0"
#if defined(_DEBUG)
VALUE "OriginalFilename", "libmicrohttpd_d.dll\0"
VALUE "OriginalFilename", "libmicrohttpd-dll_d.dll\0"
#else
VALUE "OriginalFilename", "libmicrohttpd.dll\0"
VALUE "OriginalFilename", "libmicrohttpd-dll.dll\0"
#endif
VALUE "CompanyName", "Free Software Foundation\0"
VALUE "LegalCopyright", "Copyright (C) 2007-2015 Christian Grothoff and project contributors\0"
VALUE "LegalCopyright", "Copyright (C) 2007-2017 Christian Grothoff and project contributors\0"
VALUE "Comments", "http://www.gnu.org/software/libmicrohttpd/\0"
END
END