Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 3 and Version 4 of code/libs/OpenAL


Ignore:
Timestamp:
Nov 29, 2007, 1:54:55 PM (16 years ago)
Author:
nicolape
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/libs/OpenAL

    v3 v4  
    77You 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.
    88
    9 Install-Script:
     9Install-Script for installing all to a predefined directory:
     10{{{
     11#!/bin/bash
    1012
     13INSTALL_DIR=/home/nicolape/openal/test
     14
     15cd openal-0.0.8
     16./configure --prefix=${INSTALL_DIR}
     17make clean
     18make && make install
     19cd ..
     20cd freealut-1.1.0
     21env CFLAGS="-g -I $INSTALL_DIR/include -L$INSTALL_DIR/lib" ./configure --prefix=${INSTALL_DIR}
     22make clean
     23make && make install
     24cd ..
     25export=LD_LIBRARY_PATH=${INSTALL_DIR}/lib
     26}}}
    1127
    1228== Links ==