You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Sam Hocevar 08aefffbcf * src/graphics: 21 years ago
autotools * Removed legacy .cvsignore files. 21 years ago
debian * debian/rules debian/control: 21 years ago
doc * debian/control: 21 years ago
examples * examples/aafire.c: 21 years ago
src * src/graphics: 21 years ago
AUTHORS * AUTHORS NEWS: 21 years ago
BUGS * Minor updates to manpages, BUGS, TODO and the Debian control file. 21 years ago
COPYING * The big TTYvaders/libcaca split. This is libcaca. 21 years ago
ChangeLog * debian/control: 21 years ago
Makefile.am * configure.ac: 21 years ago
NEWS * debian/control: 21 years ago
NOTES * configure.ac: 21 years ago
README * debian/control: 21 years ago
TODO * Minor updates to manpages, BUGS, TODO and the Debian control file. 21 years ago
bootstrap * The big TTYvaders/libcaca split. This is libcaca. 21 years ago
caca-config.in * configure.ac: 21 years ago
configure.ac * src/bitmap.c: 21 years ago

README

$Id$

Building libcaca

o Run configure then make. Useful configure flags are:

--enable-ncurses: use the ncurses library (default)
--enable-slang: use the SLang library
--enable-conio: use MS-DOS conio.h

o Cross-compilation example:

./configure --enable-conio --host=i386-pc-msdosdjgpp


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.