[q-lang-cvs] q-openal ChangeLog, 1.10, 1.11 INSTALL, 1.2, 1.3 Makefile, 1.7, 1.8 NEWS, 1.5, 1.6 REA
Brought to you by:
agraef
From: Albert G. <ag...@us...> - 2007-12-15 00:36:38
|
Update of /cvsroot/q-lang/q-openal In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13707 Modified Files: ChangeLog INSTALL Makefile NEWS README Log Message: update docs, bump version number Index: README =================================================================== RCS file: /cvsroot/q-lang/q-openal/README,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** README 25 Feb 2006 11:05:26 -0000 1.5 --- README 15 Dec 2007 00:36:30 -0000 1.6 *************** *** 3,13 **** ======== ! An OpenAL module for the Q programming language. Copyright (c) 2005-2006 by Albert Graef and Jonas Joebges, Johannes Gutenberg University Mainz, Germany. Distributed under the GNU General Public License (GPL) Version 2 or later (see the accompanying COPYING file for details). ! Please refer to the INSTALL file for installation instructions. You need Q 7.0 ! or later to compile this package. This is a SWIG-generated wrapper of the OpenAL library, which allows you to do --- 3,13 ---- ======== ! An OpenAL module for the Q programming language. Copyright (c) 2005-2007 by Albert Graef and Jonas Joebges, Johannes Gutenberg University Mainz, Germany. Distributed under the GNU General Public License (GPL) Version 2 or later (see the accompanying COPYING file for details). ! Please refer to the INSTALL file for installation instructions. You ! need at least Q 7.0 and OpenAL 1.1 to compile this package. This is a SWIG-generated wrapper of the OpenAL library, which allows you to do *************** *** 35,40 **** might not yet fully support all available OpenAL routines, but we intend to fix that, so if you find anything that's missing or unusable, please let us ! know. The module was developed using OpenAL 1.0 on SuSE Linux and has also ! been ported to Windows using MinGW3. Please send bug reports, patches, comments and suggestions to: --- 35,40 ---- might not yet fully support all available OpenAL routines, but we intend to fix that, so if you find anything that's missing or unusable, please let us ! know. The module was originally developed using OpenAL 1.0 on SuSE Linux, but ! the present version requires OpenAL 1.1. A windows port is available. Please send bug reports, patches, comments and suggestions to: *************** *** 43,46 **** Enjoy! ! July 2005 Albert Graef --- 43,46 ---- Enjoy! ! December 2007 Albert Graef Index: NEWS =================================================================== RCS file: /cvsroot/q-lang/q-openal/NEWS,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** NEWS 8 Dec 2007 09:26:41 -0000 1.5 --- NEWS 15 Dec 2007 00:36:30 -0000 1.6 *************** *** 1,3 **** --- 1,7 ---- + * 1.4 December 2007 + + OpenAL 1.1 compatibility fixes. + * 1.3 December 2007 Index: Makefile =================================================================== RCS file: /cvsroot/q-lang/q-openal/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 8 Dec 2007 08:24:48 -0000 1.7 --- Makefile 15 Dec 2007 00:36:30 -0000 1.8 *************** *** 5,9 **** # version number: ! version = 1.3 dist = q-openal-$(version) --- 5,9 ---- # version number: ! version = 1.4 dist = q-openal-$(version) Index: INSTALL =================================================================== RCS file: /cvsroot/q-lang/q-openal/INSTALL,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** INSTALL 18 Jul 2005 17:53:15 -0000 1.2 --- INSTALL 15 Dec 2007 00:36:30 -0000 1.3 *************** *** 14,23 **** files. These are available in source form from http://www.openal.org, and should be readily available as binary packages for most Linux distributions. ! 1. Check the toplevel Makefile. In particular, you might have to check the ! installation prefix (this should match the Q installation prefix, normally ! /usr or /usr/local on Un*x systems). Also, if your OpenAL include files and ! library live in an unusual location, you'll have to fiddle with the compiler ! options to provide the correct include and library paths. 2. ONLY IF you want to rebuild the wrapper code from scratch, run "make --- 14,26 ---- files. These are available in source form from http://www.openal.org, and should be readily available as binary packages for most Linux distributions. + The present version has been tested with OpenAL 1.1 and ALUT 1.1. Use version + 1.3 of this module if you're still running an older version of OpenAL. ! 1. Check the toplevel Makefile. In particular, you might have to check ! the installation prefix (this should match the Q installation prefix, ! normally /usr or /usr/local on Un*x systems). Also, if your OpenAL ! include files and libraries live in an unusual location, you'll have ! to fiddle with the compiler options to provide the correct include and ! library paths. 2. ONLY IF you want to rebuild the wrapper code from scratch, run "make *************** *** 36,41 **** ------- ! A binary package (zipped MSI) is available from q-lang.sf.net. To run this ! version of the module, you'll also have to install the OpenAL dlls. These are available as an installer program on Creative's OpenAL page, see http://www.openal.org/downloads.html for details. --- 39,44 ---- ------- ! A compiled version of this module is included in the Qpad MSI package. ! To run this, you'll also have to install the OpenAL dlls. These are available as an installer program on Creative's OpenAL page, see http://www.openal.org/downloads.html for details. Index: ChangeLog =================================================================== RCS file: /cvsroot/q-lang/q-openal/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ChangeLog 8 Dec 2007 09:25:51 -0000 1.10 --- ChangeLog 15 Dec 2007 00:36:30 -0000 1.11 *************** *** 1,2 **** --- 1,8 ---- + 2007-12-14 Albert Graef <Dr....@t-...> + + + Release 1.4 + + * src/openal.i: fixes for OpenAL 1.1 compatibility + 2007-12-08 Albert Graef <Dr....@t-...> |