選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 
Sam Hocevar 85511793bf * src/caca.c src/graphics.c src/io.c src/time.c: 21年前
autotools * Removed legacy .cvsignore files. 21年前
debian * configure.ac: 21年前
doc * test/spritedit.c: 21年前
examples * src/caca.c src/graphics.c src/io.c src/time.c: 21年前
src * src/caca.c src/graphics.c src/io.c src/time.c: 21年前
test * configure.ac: 21年前
AUTHORS * examples/cacaball.c: 21年前
BUGS * test/event.c: 21年前
COPYING * The big TTYvaders/libcaca split. This is libcaca. 21年前
ChangeLog * 0.7 branch. 21年前
Makefile.am * libcaca.spec: 21年前
NEWS * THANKS examples/cacaplas.c: 21年前
NOTES * src/caca.c src/graphics.c src/io.c src/time.c: 21年前
README * test/event.c: 21年前
THANKS * THANKS examples/cacaplas.c: 21年前
TODO * configure.ac NEWS: 21年前
bootstrap * The big TTYvaders/libcaca split. This is libcaca. 21年前
caca-config.in * configure.ac: 21年前
configure.ac * configure.ac: 21年前
libcaca.spec * 0.7 branch. 21年前

README

$Id$

Building libcaca

o Run configure then make. Useful configure flags are:

--enable-ncurses: support for the ncurses library
--enable-slang: support for the SLang library
--enable-conio: support for MS-DOS conio.h
--enable-x11: support for native X11 rendering

--disable-imlib2: remove Imlib2 support in cacaview

o Cross-compilation examples:

./configure --disable-imlib2 --host=i386-pc-msdosdjgpp

./configure --disable-imlib2 --host=i586-mingw32msvc


Using libcaca

o Look into the examples/ directory for simple source code examples.

o Compiling a libcaca program is fairly simple:

gcc -c foobar.c -o foobar.o `caca-config --cflags`
gcc foobar.o -o foobar `caca-config --libs`

o If you are writing a shared object that uses libcaca, either a
dynamically loadable plug-in or a shared library, you should use
the `--plugin-libs' flag for libcaca:

gcc -fPIC -c libfoo.c -o libfoo.o `caca-config --cflags`
gcc -shared libfoo.o -o libfoo.so `caca-config --plugin-libs`


Binary packages

o As the API is not stable yet, everyone should statically link libcaca
with their programs or libraries. DO NOT DISTRIBUTE SHARED VERSIONS
OF LIBCACA.