No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 
Sam Hocevar a51d8843b2 * src/graphics.c: hace 21 años
autotools * Fixed $Id in all Makefile.am files. hace 21 años
debian * Fixed $Id in all Makefile.am files. hace 21 años
doc * Fixed $Id in all Makefile.am files. hace 21 años
examples * src/graphics.c: hace 21 años
src * src/graphics.c: hace 21 años
test * Fixed $Id in all Makefile.am files. hace 21 años
AUTHORS * examples/cacaball.c: hace 21 años
BUGS * test/event.c: hace 21 años
COPYING * The big TTYvaders/libcaca split. This is libcaca. hace 21 años
ChangeLog * 0.7 branch. hace 21 años
Makefile.am * Fixed $Id in all Makefile.am files. hace 21 años
NEWS * examples/cacamoir.c: hace 21 años
NOTES * src/graphics.c: hace 21 años
README * test/event.c: hace 21 años
THANKS * THANKS examples/cacaplas.c: hace 21 años
TODO * configure.ac NEWS: hace 21 años
bootstrap * The big TTYvaders/libcaca split. This is libcaca. hace 21 años
build-win32 * build-win32: hace 21 años
caca-config.in * configure.ac: hace 21 años
configure.ac * configure.ac: hace 21 años
libcaca.spec * examples/cacamoir.c: hace 21 años

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.