Changeset 806


Ignore:
Timestamp:
Apr 18, 2006, 10:33:53 AM (17 years ago)
Author:
Sam Hocevar
Message:
  • Updated README (caca-config -> pkg-config) and TODO.
Location:
libcaca/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/README

    r571 r806  
    1111     --enable-gl: support for OpenGL rendering
    1212     --enable-win32: support for the Windows console
    13      --enable-network: support for network output
    1413
    1514     --disable-imlib2: remove Imlib2 support in cacaview
     15
     16     --disable-doc: do not build documentation
    1617
    1718   o  Cross-compilation examples:
     
    2425Using libcaca
    2526
    26    o  Look into the src/ directory for source code examples.
     27   o  Look into the src/ and test/ directories for source code examples.
    2728
    2829   o  Compiling a libcaca program is fairly simple:
    2930
    30       gcc -c foobar.c -o foobar.o `caca-config --cflags`
    31       gcc foobar.o -o foobar `caca-config --libs`
     31      gcc -c foobar.c -o foobar.o `pkg-config --cflags caca`
     32      gcc foobar.o -o foobar `pkg-config --libs caca`
    3233
    33 
    34 Binary packages
    35 
    36    o  As the API is not stable yet, everyone should statically link libcaca
    37       with their programs or libraries. DO NOT DISTRIBUTE SHARED VERSIONS
    38       OF LIBCACA.
    39 
  • libcaca/trunk/TODO

    r799 r806  
    1616
    1717   o ASCII/ANSI art loading functions (maybe load them as sprites)
    18 
    19    o throw away cucul_sqrt() and put cucul_rand() somewhere else
    2018
    2119
     
    4341
    4442   o better mask support in cucul_blit()
     43
     44   o factor Unicode character conversions, especially UCS4 -> UTF-8
    4545
    4646
Note: See TracChangeset for help on using the changeset viewer.