PPP: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
 
No edit summary
 
(6 intermediate revisions by 3 users not shown)
Line 2: Line 2:
|-
|-
!Download Source:
!Download Source:
| http://samba.org/ftp/ppp/ppp-2.4.4.tar.gz
| http://samba.org/ftp/ppp/ppp-{{PPP-Version}}.tar.gz
|}
|}


----
----
{{Blank-Package-Introduction}}


== Dependencies ==
== Dependencies ==
Line 25: Line 27:


== Multilib ==
== Multilib ==
'''''This package does not provide any external libraries so only one installation is needed.'''''


=== 32Bit ===
=== 32Bit ===
Line 30: Line 33:
Compile the package:
Compile the package:


  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
  ./configure --prefix=/usr &&
  make
  make CC="gcc ${BUILD32}"


Install the package
Install the package
Line 42: Line 45:
Compile the package:
Compile the package:


  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
  sed -i "/LIBDIR =/s:/lib:&32:g" $(grep -lr "LIBDIR =" *) &&
  make
./configure --prefix=/usr &&
  make CC="gcc ${BUILDN32}"


Install the package
Install the package
Line 54: Line 58:
Compile the package:
Compile the package:


  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
  sed -i "/LIBDIR =/s:/lib:&64:g" $(grep -lr "LIBDIR =" *) &&
  make
./configure --prefix=/usr &&
  make CC="gcc ${BUILD64}"


Install the package
Install the package
Line 61: Line 66:
  make install &&
  make install &&
  make install-etcppp
  make install-etcppp
[[Category:Network Utilities]]

Latest revision as of 16:18, 19 March 2009

Download Source: http://samba.org/ftp/ppp/ppp-2.4.4.tar.gz

Introduction to PPP

Project Homepage: Unknown

Dependencies

Optional

Non-Multilib

Compile the package:

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

Install the package

make install &&
make install-etcppp

Multilib

This package does not provide any external libraries so only one installation is needed.

32Bit

Compile the package:

./configure --prefix=/usr &&
make CC="gcc ${BUILD32}"

Install the package

make install &&
make install-etcppp

N32

Compile the package:

sed -i "/LIBDIR =/s:/lib:&32:g" $(grep -lr "LIBDIR =" *) &&
./configure --prefix=/usr &&
make CC="gcc ${BUILDN32}"

Install the package

make install &&
make install-etcppp

64Bit

Compile the package:

sed -i "/LIBDIR =/s:/lib:&64:g" $(grep -lr "LIBDIR =" *) &&
./configure --prefix=/usr &&
make CC="gcc ${BUILD64}"

Install the package

make install &&
make install-etcppp
Retrieved from "?title=PPP&oldid=17681"