File tree Expand file tree Collapse file tree 9 files changed +46
-8
lines changed Expand file tree Collapse file tree 9 files changed +46
-8
lines changed Original file line number Diff line number Diff line change 1+ 2024-07-09 22:15 mywave82
2+
3+ * ChangeLog: Release 1.6
4+
5+ 2024-02-05 10:36 mnhauke
6+
7+ * When compiling shared library with mingw, LD needs parameter "-no-undefined"
8+
9+ 2023-10-07 00:22 mywave82
10+
11+ * Put m4 macro files inside m4 directory when possible
12+ * Enable maintainer-mode by default in ./configure.
13+ * `autoupdate` to update deprecated macros in configure.ac
14+
15+ 2022-04-30 21:29 mywave82
16+
17+ * Fix some compiler warnings (g++ version 11.2.0 used for testing)
18+
19+ 2020-11-17 02:32 miller-alex
20+ * Don't convert string constants to char *
21+ * Remove useless const on binio::detect_system_flags() return type
22+
23+ 2020-07-25 24:08 cxong
24+
25+ * Add CMake files
26+
1272019-08-07 15:58 malvineous
28+
29+ * ChangeLog: Release 1.5
230 * Fix off-by-one error in memory stream.
331 * Move from SourceForge to GitHub.
432 * Documentation updates and support for more build environments.
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ AUX = doc\*.texi README AUTHORS NEWS COPYING TODO ChangeLog
77DIST = src\*.cpp src\*.h src\binio.h.in src\Makefile.bt $(AUX) INSTALL
88BINARYDIST = src\*.h src\binio.lib $(AUX)
99
10- distfile = binio13s .zip
11- binarydistfile = binio13 .zip
10+ distfile = binio16s .zip
11+ binarydistfile = binio16 .zip
1212installfile = INSTALL.dos
Original file line number Diff line number Diff line change 11This is a brief overview of user-visible changes in libbinio.
22
3+ Changes for version 1.6:
4+ ------------------------
5+ - Updates in autoconf files
6+ - Added initial support for CMake
7+ - Fix various warnings in the code
8+ - Fix building shared library with mingw
9+
310Changes for version 1.5:
411------------------------
512- Fix off-by-one error in memory streams.
Original file line number Diff line number Diff line change 1- version : 1.5 .{build}
1+ version : 1.6 .{build}
22image : Visual Studio 2017
33
44install :
Original file line number Diff line number Diff line change 11%define name binio
2- %define version 1.5
2+ %define version 1.6
33%define release 1
44
55Summary: Binary I/O stream class library
Original file line number Diff line number Diff line change 11%define name binio
2- %define version 1.4
2+ %define version 1.6
33%define release 1mdk
44%define libname %mklibname %name 1
55
Original file line number Diff line number Diff line change 1- AC_INIT ( [ binio] ,
[ 1.5] ,
[ [email protected] ] ,
[ libbinio] ) 1+ AC_INIT ( [ binio] ,
[ 1.6] ,
[ [email protected] ] ,
[ libbinio] ) 2+ # Version used for SO/DLL file(s). See https://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
3+ AC_SUBST ( [ VERSION_INFO] ,"1:0:0" )
4+
25AC_CONFIG_SRCDIR ( src/binio.cpp )
36AC_CONFIG_FILES ( [ Makefile src/Makefile doc/Makefile src/binio.h libbinio.pc] )
47AC_CONFIG_MACRO_DIRS([ m4] )
Original file line number Diff line number Diff line change 7575 <QPM:ProductDescriptionEmbedURL/>
7676 </QPM:ProductDescription>
7777 <QPM:ReleaseDescription>
78- <QPM:ReleaseVersion>1.5 </QPM:ReleaseVersion>
78+ <QPM:ReleaseVersion>1.6 </QPM:ReleaseVersion>
7979 <QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency>
8080 <QPM:ReleaseStability>Stable</QPM:ReleaseStability>
8181 <QPM:ReleaseNoteMinor/>
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ lib_LTLIBRARIES = libbinio.la
22
33libbinio_la_SOURCES = binio.cpp binfile.cpp binwrap.cpp binstr.cpp
44
5- libbinio_la_LDFLAGS = -version-info 1:0:0
5+ libbinio_la_LDFLAGS = -version-info @VERSION_INFO@
66libbinio_la_LDFLAGS += -no-undefined # mingw requires this when making shared DLL files
77
88pkginclude_HEADERS = binio.h binfile.h binwrap.h binstr.h
You can’t perform that action at this time.
0 commit comments