[q-lang-cvs] q ChangeLog,1.17,1.18 configure.in,1.6,1.7
Brought to you by:
agraef
From: <ag...@us...> - 2004-01-10 13:14:58
|
Update of /cvsroot/q-lang/q In directory sc8-pr-cvs1:/tmp/cvs-serv8835 Modified Files: ChangeLog configure.in Log Message: added mkuint, isuint, mkbool, isbool to libq, bumped up libq version number Index: ChangeLog =================================================================== RCS file: /cvsroot/q-lang/q/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** ChangeLog 5 Jan 2004 06:32:47 -0000 1.17 --- ChangeLog 10 Jan 2004 13:14:55 -0000 1.18 *************** *** 1,2 **** --- 1,13 ---- + 2004-01-10 Albert Graef <Dr....@t-...> + + * libq, modules: Finally added some routines to libq which are + used in many modules, but haven't been in libq up to now, namely + mkuint, isuint, mkbool and isbool. + + Unfortunately, the binary interface to libq had to be changed for + that in a non-backward-compatible way, so I bumped up the libq + version number. This implies that you *must* recompile all your + modules (including Q-Audio and Q-Midi if you use those). + 2004-01-05 Albert Graef <Dr....@t-...> Index: configure.in =================================================================== RCS file: /cvsroot/q-lang/q/configure.in,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** configure.in 6 Jan 2004 09:15:05 -0000 1.6 --- configure.in 10 Jan 2004 13:14:55 -0000 1.7 *************** *** 14,18 **** dnl set this to the libq version (interface:revision:age) ! LIBQ_VERSION=4:0:0 dnl set this to the year of the release (used to generate copyright infos) --- 14,18 ---- dnl set this to the libq version (interface:revision:age) ! LIBQ_VERSION=5:0:0 dnl set this to the year of the release (used to generate copyright infos) |