|
发表于 2007-12-28 08:51:58
|
显示全部楼层
http://www.sourceforge.net/projects/cce2k
If you want to run CCE in GUI environment like X11, you need to install GGI
or SDL library(SDL supports more platforms).
GGI: http://www.ggi-project.org
GGI supports Linux, *BSD, Solaris, Darwin/MacOSX, MS Windows.
./configure --prefix=/usr (install GII first, then GGI)
make install
SDL: http://www.libsdl.org
SDL supports Linux, *BSD, Solaris, BeOS, QNX, Darwin/MacOSX, MS Windows, etc.
./configure
make install
You can use --enable-ggi and --enable-sdl to enable the GGI and SDL library
support. CCE will not use GGI/SDL if you run it in console environment, otherwise
CCE will look for GGI first(seems GGI is a little faster), then try SDL. If you
are having problems dynamically loading GGI/SDL, you can link GGI/SDL into
CCE(ldd will show that CCE depends on libggi.so or libSDL.so).
If you want TrueType support, please install FreeType2 first.
http://www.freetype.org
Then configure CCE as:
./configure --enable-freetype |
|