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.

1234567891011121314151617181920212223242526272829303132333435363738
  1. $Id$
  2. Building libcaca
  3. o Run configure then make. Useful configure flags are:
  4. --enable-ncurses: support for the ncurses library
  5. --enable-slang: support for the SLang library
  6. --enable-conio: support for MS-DOS conio.h
  7. --enable-x11: support for native X11 rendering
  8. --enable-gl: support for OpenGL rendering
  9. --enable-win32: support for the Windows console
  10. --disable-imlib2: remove Imlib2 support in cacaview
  11. o Cross-compilation examples:
  12. ./configure --disable-imlib2 --host=i386-pc-msdosdjgpp
  13. ./configure --disable-imlib2 --host=i586-mingw32msvc
  14. Using libcaca
  15. o Look into the src/ directory for source code examples.
  16. o Compiling a libcaca program is fairly simple:
  17. gcc -c foobar.c -o foobar.o `caca-config --cflags`
  18. gcc foobar.o -o foobar `caca-config --libs`
  19. Binary packages
  20. o As the API is not stable yet, everyone should statically link libcaca
  21. with their programs or libraries. DO NOT DISTRIBUTE SHARED VERSIONS
  22. OF LIBCACA.