Difference between revisions of "PPP"

From CBLFS
Jump to navigationJump to search
 
(2 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
----
 
----
  
== Introduction to PPP ==
+
{{Blank-Package-Introduction}}
 
 
The PPP package contains the '''pppd''' daemon and the '''chat''' program. This is used for connecting to other machines; often for connecting to the Internet via a dial-up or PPPoE connection to an ISP.
 
  
 
== Dependencies ==
 
== Dependencies ==
Line 68: Line 66:
 
  make install &&
 
  make install &&
 
  make install-etcppp
 
  make install-etcppp
 +
 +
[[Category:Network Utilities]]

Latest revision as of 17: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