Difference between revisions of "Libofa"

From CBLFS
Jump to navigationJump to search
Line 36: Line 36:
  
 
  patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
 
  patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
+
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" ./configure --prefix=/usr &&
 
  make
 
  make
  
Line 48: Line 48:
  
 
  patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
 
  patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
+
  CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
 
  make
 
  make
  
Line 60: Line 60:
  
 
  patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
 
  patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
+
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
 
  make
 
  make
  

Revision as of 15:57, 8 October 2006

Download Source: http://www.musicdns.org/themes/musicdns_org/downloads/libofa-0.9.3.tar.gz
Required Patch: http://svn.cross-lfs.org/svn/repos/patches/libofa/libofa-0.9.3-update_to_r8438.patch

Dependencies

Required

Non-Multilib

Compile the package:

patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" ./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package

make install

64Bit

Compile the package:

patch -Np1 -i ../libofa-0.9.3-update_to_r8438.patch &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install