Difference between revisions of "Opal"

From CBLFS
Jump to navigationJump to search
Line 9: Line 9:
 
== Dependencies ==
 
== Dependencies ==
  
A LOT OF RAM! (dont do make -j5 unless you have in excess of 2GB of RAM!)
+
A LOT OF RAM! (don't use parallel builds unless you have in excess of 2GB of RAM!)
  
 
=== Required ===
 
=== Required ===
 
 
* [[pwlib]]
 
* [[pwlib]]
 
 
=== Optional ===
 
=== Optional ===
 
 
* [[Speex]]  (uses internal version otherwise)
 
* [[Speex]]  (uses internal version otherwise)
  
Line 26: Line 23:
 
  make
 
  make
  
Install:
+
Install the package:
 +
 
 +
make install
 +
 
 +
== Multilib ==
 +
 
 +
=== 32Bit ===
 +
 
 +
Compile the package:
 +
 
 +
sed -i "s:share/pwlib:lib/pwlib:g" configure &&
 +
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
 +
USE_ARCH=32 ./configure --prefix=/usr &&
 +
make CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}"
 +
 
 +
Install the package:
 +
 
 +
make install
 +
 
 +
=== N32 ===
 +
 
 +
TODO
 +
 
 +
=== 32Bit ===
 +
 
 +
Compile the package:
 +
 
 +
sed -i "s:share/pwlib:lib64/pwlib:g" configure &&
 +
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
 +
USE_ARCH=64 ./configure --prefix=/usr \
 +
    --libdir=/usr/lib64 &&
 +
make CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}"
 +
 
 +
Install the package:
  
 
  make install
 
  make install

Revision as of 12:52, 12 November 2006

Download Source: http://www.ekiga.org/admin/downloads/latest/sources/sources/opal-2.2.3.tar.gz

Dependencies

A LOT OF RAM! (don't use parallel builds unless you have in excess of 2GB of RAM!)

Required

Optional

  • Speex (uses internal version otherwise)

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

sed -i "s:share/pwlib:lib/pwlib:g" configure &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
USE_ARCH=32 ./configure --prefix=/usr &&
make CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}"

Install the package:

make install

N32

TODO

32Bit

Compile the package:

sed -i "s:share/pwlib:lib64/pwlib:g" configure &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
USE_ARCH=64 ./configure --prefix=/usr \
    --libdir=/usr/lib64 &&
make CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}"

Install the package:

make install