mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Update win c6 makefile and tcl backend to version 2.6.0
This commit is contained in:
parent
19ba8a34c4
commit
c52032acb2
@ -1220,12 +1220,13 @@ int data_matrix_200(struct zint_symbol *symbol, const unsigned char source[], co
|
|||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
{
|
{
|
||||||
int CWCount;
|
int CWCount;
|
||||||
|
int posCur;
|
||||||
if (skew)
|
if (skew)
|
||||||
CWCount = 1558 + 620;
|
CWCount = 1558 + 620;
|
||||||
else
|
else
|
||||||
CWCount = bytes + rsblock * (bytes / datablock);
|
CWCount = bytes + rsblock * (bytes / datablock);
|
||||||
printf("Codewords (%i):", CWCount);
|
printf("Codewords (%i):", CWCount);
|
||||||
for (int posCur = 0; posCur < CWCount; posCur++)
|
for (posCur = 0; posCur < CWCount; posCur++)
|
||||||
printf(" %3i", binary[posCur]);
|
printf(" %3i", binary[posCur]);
|
||||||
puts("\n");
|
puts("\n");
|
||||||
}
|
}
|
||||||
@ -1254,9 +1255,10 @@ int data_matrix_200(struct zint_symbol *symbol, const unsigned char source[], co
|
|||||||
// Print position matrix as in standard
|
// Print position matrix as in standard
|
||||||
for (y = NR - 1; y >= 0; y--) {
|
for (y = NR - 1; y >= 0; y--) {
|
||||||
for (x = 0; x < NC; x++) {
|
for (x = 0; x < NC; x++) {
|
||||||
|
int v;
|
||||||
if (x != 0)
|
if (x != 0)
|
||||||
fprintf(stderr, "|");
|
fprintf(stderr, "|");
|
||||||
int v = places[(NR - y - 1) * NC + x];
|
v = places[(NR - y - 1) * NC + x];
|
||||||
fprintf(stderr, "%3d.%2d", (v >> 3), 8 - (v & 7));
|
fprintf(stderr, "%3d.%2d", (v >> 3), 8 - (v & 7));
|
||||||
}
|
}
|
||||||
fprintf(stderr, "\n");
|
fprintf(stderr, "\n");
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# so you can encode the package version directly into the source files.
|
# so you can encode the package version directly into the source files.
|
||||||
#-----------------------------------------------------------------------
|
#-----------------------------------------------------------------------
|
||||||
|
|
||||||
AC_INIT([zint], [2.5.3])
|
AC_INIT([zint], [2.6.0])
|
||||||
|
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
# Call TEA_INIT as the first TEA_ macro to set up initial vars.
|
# Call TEA_INIT as the first TEA_ macro to set up initial vars.
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
package ifneeded zint 2.5.3\
|
package ifneeded zint 2.6.0\
|
||||||
[list load [file join $dir zint[info sharedlibextension]]]
|
[list load [file join $dir zint[info sharedlibextension]]]
|
||||||
|
@ -40,6 +40,8 @@
|
|||||||
- Include the upstream reverted image format
|
- Include the upstream reverted image format
|
||||||
2016-12-12 2.5.3 HaO
|
2016-12-12 2.5.3 HaO
|
||||||
- No changes here, take 2.5.1 framework files
|
- No changes here, take 2.5.1 framework files
|
||||||
|
2017-05-12 2.6.0 HaO
|
||||||
|
- No changes here, take 2.6 framework files
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(__WIN32__) || defined(_WIN32) || defined(WIN32)
|
#if defined(__WIN32__) || defined(_WIN32) || defined(WIN32)
|
||||||
@ -79,7 +81,7 @@
|
|||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
/* > File option defines */
|
/* > File option defines */
|
||||||
|
|
||||||
#define VERSION "2.5.3"
|
#define VERSION "2.6.0"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
/* >>>>> Hepler defines */
|
/* >>>>> Hepler defines */
|
||||||
|
@ -42,7 +42,7 @@ RSC=rc.exe
|
|||||||
# PROP Ignore_Export_Lib 0
|
# PROP Ignore_Export_Lib 0
|
||||||
# PROP Target_Dir ""
|
# PROP Target_Dir ""
|
||||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||||
# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\backend" /I "..\..\..\zlib" /I "..\..\..\lpng" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /D ZINT_VERSION="\"2.5.1\"" /c
|
# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\backend" /I "..\..\..\zlib" /I "..\..\..\lpng" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /D ZINT_VERSION="\"2.6\"" /c
|
||||||
# ADD BASE RSC /l 0x407 /d "NDEBUG"
|
# ADD BASE RSC /l 0x407 /d "NDEBUG"
|
||||||
# ADD RSC /l 0x407 /d "NDEBUG"
|
# ADD RSC /l 0x407 /d "NDEBUG"
|
||||||
BSC32=bscmake.exe
|
BSC32=bscmake.exe
|
||||||
@ -66,7 +66,7 @@ LINK32=link.exe
|
|||||||
# PROP Ignore_Export_Lib 0
|
# PROP Ignore_Export_Lib 0
|
||||||
# PROP Target_Dir ""
|
# PROP Target_Dir ""
|
||||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||||
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "..\..\backend" /I "..\..\..\lpng" /I "..\..\..\zlib" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "NO_PNG" /YX /FD /GZ /D ZINT_VERSION="\"2.5\"" /c
|
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "..\..\backend" /I "..\..\..\lpng" /I "..\..\..\zlib" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "NO_PNG" /D "DEBUG" /YX /FD /GZ /D ZINT_VERSION="\"2.6\"" /c
|
||||||
# ADD BASE RSC /l 0x407 /d "_DEBUG"
|
# ADD BASE RSC /l 0x407 /d "_DEBUG"
|
||||||
# ADD RSC /l 0x407 /d "_DEBUG"
|
# ADD RSC /l 0x407 /d "_DEBUG"
|
||||||
BSC32=bscmake.exe
|
BSC32=bscmake.exe
|
||||||
|
Loading…
Reference in New Issue
Block a user