Skip to content

Commit 5ddf434

Browse files
committed
Updates for MQ 9.3.1
1 parent d2f7e7a commit 5ddf434

21 files changed

+207
-52
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
History (newest at top)
33
=======================
44

5+
Oct 2022 (v5.4.1)
6+
* Update for MQ V9.3.1
7+
* Extended QQST structure in the 115 records
8+
* Add config option (-g) to print timestamps in GMT.
9+
* Default prints as localtime
10+
511
Jul 2022 (v5.4)
612
* Update for MQ V9.3.0
713
* New QQST structure in the 115 records

bin/aix/convH

312 Bytes
Binary file not shown.

bin/aix/mqsmfcsv

2.58 KB
Binary file not shown.

bin/linux/convH

48 Bytes
Binary file not shown.

bin/linux/mqsmfcsv

4.37 KB
Binary file not shown.

bin/win/convH.exe

-133 KB
Binary file not shown.

bin/win/mqsmfcsv.exe

1 KB
Binary file not shown.

src/M

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plat=`uname`
44

55
if [ -z "$VERS" ]
66
then
7-
VERS="930"
7+
VERS="931"
88
fi
99

1010
if [ "$plat" = "AIX" ]

src/Makefile.gcc.win

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CC=i686-w64-mingw32-gcc
33
# CFLAGS= -I. -m32 -fpack-struct=8 -DPLATFORM_WINDOWS
44
CFLAGS= -I. -m32 -DPLATFORM_WINDOWS
55
PLATFLAGS=
6-
VERS=930
6+
VERS=931
77
SRC = mqsmf.c \
88
smfDDL.c \
99
smfDate.c \
@@ -54,7 +54,7 @@ all: sizeTest shipTest
5454

5555
sizeTest: mqsmfcsv.exe
5656
./mqsmfcsv.exe -v > sizes.tmp
57-
diff -b sizes.tmp sizes.master
57+
diff -b sizes.tmp sizes.master.$(VERS)
5858

5959
shipTest: mqsmfcsv.exe
6060
cd ../testing/shipTest;./shipTest.sh csv sql json

src/Makefile.unix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ tests: all
5454

5555
sizeTest: mqsmfcsv
5656
./mqsmfcsv -v > sizes.tmp
57-
diff -b sizes.tmp sizes.master
57+
diff -b sizes.tmp sizes.master.$(VERS)
5858

5959
shipTest: mqsmfcsv
6060
cd ../testing/shipTest;./shipTest.sh csv sql json

0 commit comments

Comments
 (0)