SDL net: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://www.libsdl.org/projects/SDL_net/release/SDL_net- | | http://www.libsdl.org/projects/SDL_net/release/SDL_net-{{SDL_net-Version}}.tar.gz | ||
|} | |} | ||
---- | ---- | ||
{{Package-Introduction|This is a small sample cross-platform networking library, with a sample chat client and server application. The chat client uses the GUIlib GUI framework library.|http://www.libsdl.org/projects/SDL_net/}} | |||
== Dependencies == | == Dependencies == | ||
| Line 62: | Line 64: | ||
make install | make install | ||
[[Category:Media Libraries]] | |||
Latest revision as of 15:32, 19 March 2009
| Download Source: | http://www.libsdl.org/projects/SDL_net/release/SDL_net-1.2.7.tar.gz |
|---|
Introduction to SDL net
This is a small sample cross-platform networking library, with a sample chat client and server application. The chat client uses the GUIlib GUI framework library.
Project Homepage: http://www.libsdl.org/projects/SDL_net/
Dependencies
Required
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr &&
make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package
make install