|
|
преди 20 години | |
|---|---|---|
| autotools | преди 22 години | |
| caca | преди 20 години | |
| cucul | преди 20 години | |
| debian | преди 20 години | |
| doc | преди 20 години | |
| kernel | преди 20 години | |
| msvc | преди 20 години | |
| perl | преди 20 години | |
| python | преди 20 години | |
| src | преди 20 години | |
| test | преди 20 години | |
| AUTHORS | преди 20 години | |
| COPYING | преди 20 години | |
| COPYING.GPL | преди 20 години | |
| COPYING.LGPL | преди 20 години | |
| ChangeLog | преди 20 години | |
| Makefile.am | преди 20 години | |
| NEWS | преди 22 години | |
| NOTES | преди 22 години | |
| README | преди 20 години | |
| THANKS | преди 20 години | |
| TODO | преди 20 години | |
| bootstrap | преди 20 години | |
| build-dos | преди 20 години | |
| build-kernel | преди 20 години | |
| build-win32 | преди 20 години | |
| caca-config.in | преди 20 години | |
| configure.ac | преди 20 години | |
| libcaca.spec | преди 20 години | |
$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
--enable-gl: support for OpenGL rendering
--enable-win32: support for the Windows console
--enable-network: support for network output
--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 src/ directory for 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`
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.