Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 
Sam Hocevar d6e556e5c6 * Fixed our buffer overflow in the ANSI parser by simply skipping control pirms 18 gadiem
autotools * Fixed $Id in all Makefile.am files. pirms 21 gadiem
caca * Fixed minor compilation warning. pirms 18 gadiem
cpp * Updated C++ bindings, should be coding-style-correction-proof, or at least a bit better than before. Not tested at all. pirms 18 gadiem
cucul * Fixed our buffer overflow in the ANSI parser by simply skipping control pirms 18 gadiem
debian * Fixed Debian build files. pirms 18 gadiem
doc * Hahaha, fixed the coding style example. pirms 18 gadiem
kernel * Removed duplicate uint*_t defines from *_internal.h and included common.h pirms 18 gadiem
msvc * Updated MSVC++ project (static library and src/*) pirms 18 gadiem
perl * Updated MSVC++ project (static library and src/*) pirms 18 gadiem
python * More function mass-renaming: caca_attach -> caca_create_display, etc. pirms 18 gadiem
src * Brought the Win32 build back on its wheels. pirms 18 gadiem
test * Updated C++ bindings, should be coding-style-correction-proof, or at least a bit better than before. Not tested at all. pirms 18 gadiem
tools * Renamed htons/htonl to hton16/hton32 to avoid useless conflicts. pirms 18 gadiem
AUTHORS * Added AUTHORS, THANKS, NEWS and TODO to the Doxygen documentation. Moved the main pirms 18 gadiem
COPYING * Changed the licensing to WTFPL, as per all copyright holders' permission. pirms 19 gadiem
COPYING.GPL * Added glue code to compile libcaca without a libc and build applications pirms 18 gadiem
COPYING.LGPL * Changed the licensing to WTFPL, as per all copyright holders' permission. pirms 19 gadiem
ChangeLog * 0.99.beta1 release. pirms 18 gadiem
Makefile.am * Added "common.h", a placeholder for simple features and functions missing pirms 18 gadiem
NEWS * 0.99.beta1 release. pirms 18 gadiem
NOTES * Moved the technical discussion on S-Lang's palette optimisation from pirms 18 gadiem
README * Updated README (caca-config -> pkg-config) and TODO. pirms 18 gadiem
THANKS * Added AUTHORS, THANKS, NEWS and TODO to the Doxygen documentation. Moved the main pirms 18 gadiem
TODO * 0.99.beta1 release. pirms 18 gadiem
bootstrap * New updated bootstrap script. pirms 19 gadiem
build-dos * Fixed DOS driver. pirms 19 gadiem
build-kernel * Oops, modified build-kernel while testing and commited it ;) pirms 18 gadiem
build-win32 * Removed my previously introduced --enable-pangoft2 and replaced it with pirms 18 gadiem
caca-config.in * Let us do "caca-config --libs cucul" to get only the libcucul dependencies. pirms 18 gadiem
common.h * Renamed htons/htonl to hton16/hton32 to avoid useless conflicts. pirms 18 gadiem
configure.ac * Check for <errno.h>. pirms 18 gadiem
libcaca.spec * Removed cacademo from examples, manpages and distributions. It's useless. pirms 19 gadiem

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
--enable-gl: support for OpenGL rendering
--enable-win32: support for the Windows console

--disable-imlib2: remove Imlib2 support in cacaview

--disable-doc: do not build documentation

o Cross-compilation examples:

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

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


Using libcaca

o Look into the src/ and test/ directories for source code examples.

o Compiling a libcaca program is fairly simple:

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