mirror of
https://git.code.sf.net/p/zint/code
synced 2026-01-19 18:06:01 +00:00
version strings updated to 2.4.2
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
# make clean cleans up a previous compilation and any object or editor files
|
||||
#
|
||||
|
||||
ZINT_VERSION:=-DZINT_VERSION=\"2.4.1\"
|
||||
ZINT_VERSION:=-DZINT_VERSION=\"2.4.2\"
|
||||
|
||||
|
||||
CC:= gcc -m32
|
||||
@@ -15,7 +15,7 @@ AR:= ar rc
|
||||
RANLIB:= ranlib
|
||||
INCLUDE:= -I/mingw/include
|
||||
CFLAGS:= -O2 -fms-extensions -mms-bitfields -fno-exceptions -fomit-frame-pointer -Wall
|
||||
LDFLAGS = -Wl,--major-image-version=2 -Wl,--minor-image-version=40
|
||||
LDFLAGS = -Wl,--major-image-version=2 -Wl,--minor-image-version=42
|
||||
RC:= windres
|
||||
RCFLAGS:= -v -F pe-i386 --define GCC_WINDRES
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/* Sed: http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/programmersguide/versions.asp */
|
||||
#if defined (WIN32) && (defined(_USRDLL) || defined(DLL_EXPORT) || defined(PIC))
|
||||
#if defined (_WIN32) && (defined(_USRDLL) || defined(DLL_EXPORT) || defined(PIC))
|
||||
#include <windows.h>
|
||||
#include <shlwapi.h>
|
||||
|
||||
@@ -21,11 +21,11 @@ HRESULT DllGetVersion (DLLVERSIONINFO2* pdvi)
|
||||
|
||||
pdvi->info1.dwMajorVersion = 2;
|
||||
pdvi->info1.dwMinorVersion = 4;
|
||||
pdvi->info1.dwBuildNumber = 1;
|
||||
pdvi->info1.dwBuildNumber = 2;
|
||||
pdvi->info1.dwPlatformID = DLLVER_PLATFORM_WINDOWS;
|
||||
if (sizeof(DLLVERSIONINFO2) == pdvi->info1.cbSize)
|
||||
pdvi->ullVersion = MAKEDLLVERULL(2, 4, 1, 0);
|
||||
pdvi->ullVersion = MAKEDLLVERULL(2, 4, 2, 0);
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
#endif /* WIN32 */
|
||||
#endif /* _WIN32 */
|
||||
|
||||
Reference in New Issue
Block a user