Skip to content

Commit 668a074

Browse files
committed
Update to MQ 9.1.5; include filtered headerfile for complete build experience
1 parent 0a6ef3e commit 668a074

File tree

16 files changed

+1542
-37
lines changed

16 files changed

+1542
-37
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

22
History (newest at top)
33
=======================
4+
Apr 2020 (v5.2.1)
5+
* Update for MQ V9.1.5
6+
* Include mqsmfstruc.h so you can build without copying a header from z/OS
47

58
Dec 2019 (v5.2.0)
69
* Add support for MQ 9.1.4 encrypted datasets and logs

bin/aix/convH

1.51 KB
Binary file not shown.

bin/aix/mqsmfcsv

-48.8 KB
Binary file not shown.

bin/linux/convH

2.74 KB
Binary file not shown.

bin/linux/mqsmfcsv

2.63 KB
Binary file not shown.

bin/win/convH.exe

2 KB
Binary file not shown.

bin/win/mqsmfcsv.exe

-278 KB
Binary file not shown.

mqsmfcsv.doc

-7 KB
Binary file not shown.

src/M

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/ksh
1+
#!/bin/sh
22

33
plat=`uname`
44

@@ -26,7 +26,7 @@ else
2626
flags="$flags $optim"
2727
fi
2828

29-
export PLATFLAGS=$flags CC=$cc VERS=914
29+
export PLATFLAGS=$flags CC=$cc VERS=915
3030
make -e -f Makefile.unix $*
3131

3232
rm -f $targdir/convH $targdir/mqsmfcsv

src/Makefile.gcc.win

Lines changed: 5 additions & 5 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=914
6+
VERS=915
77
SRC = mqsmf.c \
88
smfDDL.c \
99
smfDate.c \
@@ -49,16 +49,16 @@ sizeTest: mqsmfcsv.exe
4949
diff -b sizes.tmp sizes.master
5050

5151
shipTest: mqsmfcsv.exe
52-
cd ../testing/shipTest;./shipTest.sh
52+
cd ../testing/shipTest;./shipTest.sh csv sql json
5353

54-
mqsmfcsv.exe: $(SRC) $(HDR) Makefile.gcc.win dummy
54+
mqsmfcsv.exe: $(SRC) $(HDR) Makefile.gcc.win dummy
5555
-rm -f $@
5656
$(CC) $(PLATFLAGS) -o $@ $(SRC) $(CFLAGS) -DCSQDSMF_VERSION=$(VERS)
5757
-mkdir out >/dev/null 2>&1 || true
5858
cp $@ ../bin/win
5959

60-
mqsmfstruc.h: csqdsmfc-$(VERS).h convH.exe dummy
61-
./convH.exe < csqdsmfc-$(VERS).h > $@
60+
mqsmfstruc.h: convH.exe dummy
61+
./convH.exe $(VERS) < csqdsmfc-$(VERS).h > $@
6262

6363
convH.exe: convH64.c
6464
$(CC) $(CFLAGS) -o $@ convH64.c

0 commit comments

Comments
 (0)