Ignore:
Timestamp:
Apr 18, 2006, 10:33:53 AM (17 years ago)
Author:
Sam Hocevar
Message:
  • Updated README (caca-config -> pkg-config) and TODO.
File:
1 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 
Note: See TracChangeset for help on using the changeset viewer.