Dhcpcd: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| | | http://download.berlios.de/dhcpcd/dhcpcd-{{Dhcpcd-Version}}.tar.bz2 | ||
|} | |} | ||
| Line 17: | Line 17: | ||
Compile the package: | Compile the package: | ||
make CC="gcc" | |||
Install the package | Install the package | ||
make install | make install | ||
== Multilib == | == Multilib == | ||
| Line 32: | Line 30: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD32}" | make CC="gcc ${BUILD32}" | ||
Install the package | Install the package | ||
make install | make install | ||
=== N32 === | === N32 === | ||
| Line 44: | Line 40: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILDN32}" | make CC="gcc ${BUILDN32}" | ||
Install the package | Install the package | ||
make install | make install | ||
=== 64Bit === | === 64Bit === | ||
| Line 56: | Line 50: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD64}" | make CC="gcc ${BUILD64}" | ||
Install the package | Install the package | ||
make install | make install | ||
Revision as of 20:19, 28 December 2006
| Download Source: | http://download.berlios.de/dhcpcd/dhcpcd-5.2.8.tar.bz2 |
|---|
Introduction to Dhcpcd
Dhcpcd is an implementation of the DHCP client specified in RFC2131. This is useful for connecting your computer to a network which uses DHCP to assign network addresses.
Dependencies
Non-Multilib
Compile the package:
make CC="gcc"
Install the package
make install
Multilib
This package does not provide any libraries so only one installation is needed.
32Bit
Compile the package:
make CC="gcc ${BUILD32}"
Install the package
make install
N32
Compile the package:
make CC="gcc ${BUILDN32}"
Install the package
make install
64Bit
Compile the package:
make CC="gcc ${BUILD64}"
Install the package
make install