Difference between revisions of "SDL net"

From CBLFS
Jump to navigationJump to search
m (Added Intro)
m
Line 7: Line 7:
 
----
 
----
  
{{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/}}
+
{{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 ==

Revision as of 17:20, 15 February 2008

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