Changeset 3588


Ignore:
Timestamp:
Jul 27, 2009, 1:26:21 AM (14 years ago)
Author:
Sam Hocevar
Message:

Start implementing a full <conio.h> replacement with a libcaca backend.

Location:
libcaca/trunk
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/caca/Makefile.am

    r3570 r3588  
    1111pkgconfigdir = $(libdir)/pkgconfig
    1212
    13 include_HEADERS = caca.h caca_types.h caca0.h
     13include_HEADERS = caca.h caca_types.h caca_conio.h caca0.h
    1414
    1515lib_LTLIBRARIES = libcaca.la
     
    2121        caca_internals.h \
    2222        caca_stubs.h \
     23        caca_conio.c \
     24        caca_conio.h \
    2325        caca0.c \
    2426        caca0.h \
     
    2628        dirty.c \
    2729        string.c \
    28         legacy.c \
    29         transform.c \
    30         charset.c \
    31         attr.c \
    32         line.c \
    33         box.c \
    34         conic.c \
    35         triangle.c \
    36         frame.c \
    37         dither.c \
    38         font.c \
    39         file.c \
    40         figfont.c \
     30        legacy.c \
     31        transform.c \
     32        charset.c \
     33        attr.c \
     34        line.c \
     35        box.c \
     36        conic.c \
     37        triangle.c \
     38        frame.c \
     39        dither.c \
     40        font.c \
     41        file.c \
     42        figfont.c \
    4143        graphics.c \
    4244        event.c \
  • libcaca/trunk/configure.ac

    r3512 r3588  
    104104AC_CHECK_HEADERS(stdio.h stdarg.h signal.h sys/ioctl.h sys/time.h endian.h unistd.h arpa/inet.h netinet/in.h winsock2.h errno.h locale.h getopt.h dlfcn.h termios.h)
    105105AC_CHECK_FUNCS(signal ioctl snprintf vsnprintf getenv putenv strcasecmp htons)
    106 AC_CHECK_FUNCS(usleep gettimeofday)
     106AC_CHECK_FUNCS(usleep gettimeofday atexit)
    107107
    108108ac_cv_have_getopt_long="no"
  • libcaca/trunk/examples/.gitignore

    r2824 r3588  
    22canvas
    33colors
     4conio
    45demo
    56demo0
  • libcaca/trunk/examples/Makefile.am

    r3404 r3588  
    33AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/caca -I$(top_builddir)/caca
    44
    5 noinst_PROGRAMS = blit canvas colors demo demo0 dithering driver event export figfont font font2tga frames fullwidth gamma hsv input spritedit swallow text transform truecolor unicode import
     5noinst_PROGRAMS = blit canvas colors conio demo demo0 dithering driver event export figfont font font2tga frames fullwidth gamma hsv input spritedit swallow text transform truecolor unicode import
    66
    77blit_SOURCES = blit.c
     
    1313colors_SOURCES = colors.c
    1414colors_LDADD = ../caca/libcaca.la
     15
     16conio_SOURCES = conio.c
     17conio_LDADD = ../caca/libcaca.la
    1518
    1619demo_SOURCES = demo.c
Note: See TracChangeset for help on using the changeset viewer.