Browse Source

* Updated README (caca-config -> pkg-config) and TODO.

tags/v0.99.beta14
Sam Hocevar sam 18 years ago
parent
commit
2948e55b1c
2 changed files with 7 additions and 13 deletions
  1. +5
    -11
      README
  2. +2
    -2
      TODO

+ 5
- 11
README View File

@@ -10,10 +10,11 @@ Building libcaca
--enable-x11: support for native X11 rendering --enable-x11: support for native X11 rendering
--enable-gl: support for OpenGL rendering --enable-gl: support for OpenGL rendering
--enable-win32: support for the Windows console --enable-win32: support for the Windows console
--enable-network: support for network output


--disable-imlib2: remove Imlib2 support in cacaview --disable-imlib2: remove Imlib2 support in cacaview


--disable-doc: do not build documentation

o Cross-compilation examples: o Cross-compilation examples:
./configure --disable-imlib2 --host=i386-pc-msdosdjgpp ./configure --disable-imlib2 --host=i386-pc-msdosdjgpp
@@ -23,17 +24,10 @@ Building libcaca


Using libcaca Using libcaca


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


o Compiling a libcaca program is fairly simple: 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.
gcc -c foobar.c -o foobar.o `pkg-config --cflags caca`
gcc foobar.o -o foobar `pkg-config --libs caca`



+ 2
- 2
TODO View File

@@ -16,8 +16,6 @@ libcucul


o ASCII/ANSI art loading functions (maybe load them as sprites) o ASCII/ANSI art loading functions (maybe load them as sprites)


o throw away cucul_sqrt() and put cucul_rand() somewhere else



API-independent stuff API-independent stuff
--------------------- ---------------------
@@ -43,6 +41,8 @@ libcucul


o better mask support in cucul_blit() o better mask support in cucul_blit()


o factor Unicode character conversions, especially UCS4 -> UTF-8



libcaca libcaca
======= =======


Loading…
Cancel
Save