Skip to content

Commit

Permalink
Final 4.5 release preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
Futaura committed Mar 29, 2020
1 parent 3a86559 commit 6b0b580
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ endif

VERSION=4
VERSIONNAME=111d
AMISSLREVISION=4
AMISSLMASTERREVISION=4
AMISSLDATE=15.02.2020
AMISSLMASTERDATE=15.02.2020
AMISSLREVISION=5
AMISSLMASTERREVISION=5
AMISSLDATE=29.03.2020
AMISSLMASTERDATE=29.03.2020

# Common Directories
PREFIX = $(CDTHIS)
Expand Down
3 changes: 2 additions & 1 deletion dist/AmiSSL.readme
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,13 @@ Requirements:
------------
- AmigaOS 4.0+/PPC, AmigaOS 3.0+/68020+ or MorphOS

Version 4.5 (??.03.2020):
Version 4.5 (29.03.2020):
------------------------
- Dropped FPU usage from 68060 target, allowing 68LC060 and 68EC060
processors to benefit from the 4.4 changes, without crashing.
- Fixed a number of memory leaks, particularly where multithreaded
applications would leak memory over time (although freed on exit).
- All binaries now stripped of debug symbols, improving load time.
- Fixed installer issue for MorphOS (#43).
- Modernized and improved the https example source code.
- Minor improvements/fixes.
Expand Down
2 changes: 1 addition & 1 deletion include/libraries/amisslmaster.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#define AMISSL_V110e 0x08 /* AmiSSL v4.1 */
#define AMISSL_V110g 0x09 /* AmiSSL v4.2 */
#define AMISSL_V111a_OBS 0x0a /* AmiSSL v4.3 (obsolete incompatible API) */
#define AMISSL_V111d 0x0b /* AmiSSL v4.4 */
#define AMISSL_V111d 0x0b /* AmiSSL v4.4/4.5 */

#define AMISSL_V10x AMISSL_V102f /* Latest AmiSSL/OpenSSL 1.0.x compatible version */
#define AMISSL_V11x AMISSL_V111d /* Latest AmiSSL/OpenSSL 1.1.x compatible version */
Expand Down
16 changes: 8 additions & 8 deletions tools/mkrelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@ OS="os3-68020 os3-68060 os4"
for os in ${OS}; do
libdir="";
case $os in
os3-68020) fullsys="AmigaOS3" libdir="/68020-40";;
os3-68060) fullsys="AmigaOS3" libdir="/68060";;
os4) fullsys="AmigaOS4";;
mos) fullsys="MorphOS";;
os3-68020) fullsys="AmigaOS3" strip="m68k-amigaos-strip" libdir="/68020-40";;
os3-68060) fullsys="AmigaOS3" strip="m68k-amigaos-strip" libdir="/68060";;
os4) fullsys="AmigaOS4" strip="ppc-amigaos-strip";;
mos) fullsys="MorphOS" strip="ppc-morphos-strip";;
aros-i386) fullsys="AROS-i386";;
aros-ppc) fullsys="AROS-ppc";;
aros-x86_64) fullsys="AROS-x86_64";;
esac
mkdir -p "release/AmiSSL/Libs/$fullsys/AmiSSL$libdir"
cp -a build_$os/amissl_v$versionname.library "release/AmiSSL/Libs/$fullsys/AmiSSL$libdir"
$strip -p -R.comment build_$os/amissl_v$versionname.library -o "release/AmiSSL/Libs/$fullsys/AmiSSL$libdir/amissl_v$versionname.library"
if [ "$os" != "os3-68060" ]; then
mkdir -p "release/AmiSSL/Libs/$fullsys"
cp -a build_$os/amisslmaster.library "release/AmiSSL/Libs/$fullsys/"
$strip -p -R.comment build_$os/amisslmaster.library -o "release/AmiSSL/Libs/$fullsys/amisslmaster.library"
mkdir -p "release/AmiSSL/C/$fullsys"
cp -a build_$os/openssl/apps/openssl "release/AmiSSL/C/$fullsys/OpenSSL"
$strip -p -R.comment build_$os/openssl/apps/openssl -o "release/AmiSSL/C/$fullsys/OpenSSL"
mkdir -p "release/AmiSSL/Developer/Examples/$fullsys"
cp -a build_$os/https "release/AmiSSL/Developer/Examples/$fullsys/"
$strip -p -R.comment build_$os/https -o "release/AmiSSL/Developer/Examples/$fullsys/https"
mkdir -p "release/AmiSSL/Developer/lib/$fullsys"
cp -a build_$os/libamisslauto.a "release/AmiSSL/Developer/lib/$fullsys/"
fi
Expand Down

0 comments on commit 6b0b580

Please sign in to comment.