• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.auto/H16-May-2014-15,04911,629

caca/H07-May-2022-37,60930,533

caca-sharp/H03-May-2022-2,4201,976

cxx/H07-May-2022-2,0741,770

doc/H03-May-2022-4,0953,322

examples/H03-May-2022-5,7884,420

java/H03-May-2022-3,5172,602

kernel/H03-May-2022-1,054824

python/H03-May-2022-4,5683,511

ruby/H03-May-2022-3,3472,737

src/H03-May-2022-5,2554,400

test/H03-May-2022-2,0461,604

tools/H03-May-2022-1,7501,336

win32/H03-May-2022-592460

AUTHORSH A D20-May-2010628 3524

COPYINGH A D28-Dec-2012466 159

COPYING.GPLH A D25-Apr-200817.6 KiB341281

COPYING.ISCH A D01-Aug-2009763 1411

COPYING.LGPLH A D25-Apr-200825.9 KiB511422

ChangeLogH A D06-Apr-2012691.3 KiB23,58917,956

Makefile.amH A D16-May-20141.3 KiB3725

Makefile.inH A D03-May-202230.4 KiB969864

NEWSH A D06-Apr-20127.4 KiB224168

NOTESH A D08-Feb-20104.3 KiB12696

READMEH A D16-Apr-20101.1 KiB3822

THANKSH A D18-Nov-2012919 2618

aclocal.m4H A D16-May-2014360.8 KiB10,2529,231

bootstrapH A D16-May-20144.1 KiB159112

build-dosH A D08-Feb-20101.2 KiB4630

build-kernelH A D08-Feb-20101.8 KiB6225

build-win32H A D26-Jun-20121.6 KiB5539

build-win64H A D26-Jun-20121.6 KiB5539

caca-config.inH A D08-Feb-20101.6 KiB119100

config.h.inH A D16-May-20147 KiB271182

configureH A D03-May-2022652.9 KiB21,82818,387

configure.acH A D16-May-201419.7 KiB578526

libcaca.slnH A D12-Jun-201224.1 KiB332331

libcaca.specH A D25-Apr-20084.1 KiB130109

README

1
2Building libcaca
3
4   o  If you are using a Git or SVN checkout, you need to run the
5      bootstrap script in order to generate configure. This is not
6      necessary for official tarballs.
7
8   o  Run configure then make. Useful configure flags are:
9
10     --enable-ncurses: support for the ncurses library
11     --enable-slang: support for the SLang library
12     --enable-conio: support for MS-DOS conio.h
13     --enable-x11: support for native X11 rendering
14     --enable-gl: support for OpenGL rendering
15     --enable-win32: support for the Windows console
16     --enable-network: support for the network server
17
18     --disable-imlib2: remove Imlib2 support in cacaview
19
20     --disable-doc: do not build documentation
21
22   o  Cross-compilation examples:
23
24     ./configure --disable-imlib2 --host=i386-pc-msdosdjgpp
25
26     ./configure --disable-imlib2 --host=i586-mingw32msvc
27
28
29Using libcaca
30
31   o  Look into the src/ and test/ directories for source code examples.
32
33   o  Compiling a libcaca program is fairly simple:
34
35      gcc -c foobar.c -o foobar.o `pkg-config --cflags caca`
36      gcc foobar.o -o foobar `pkg-config --libs caca`
37
38