Changes between Version 3 and Version 4 of code/libs/OpenAL
- Timestamp:
- Nov 29, 2007, 1:54:55 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/libs/OpenAL
v3 v4 7 7 You need the [http://www.openal.org/openal_webstf/downloads/openal-0.0.8.tar.gz OpenAL] and the [http://www.openal.org/openal_webstf/downloads/freealut-1.1.0.tar.gz FreeAlut] Package. FreeAlut are utilities for OpenAL and depend on it. 8 8 9 Install-Script: 9 Install-Script for installing all to a predefined directory: 10 {{{ 11 #!/bin/bash 10 12 13 INSTALL_DIR=/home/nicolape/openal/test 14 15 cd openal-0.0.8 16 ./configure --prefix=${INSTALL_DIR} 17 make clean 18 make && make install 19 cd .. 20 cd freealut-1.1.0 21 env CFLAGS="-g -I $INSTALL_DIR/include -L$INSTALL_DIR/lib" ./configure --prefix=${INSTALL_DIR} 22 make clean 23 make && make install 24 cd .. 25 export=LD_LIBRARY_PATH=${INSTALL_DIR}/lib 26 }}} 11 27 12 28 == Links ==