Changeset 3588
- Timestamp:
- Jul 27, 2009, 1:26:21 AM (14 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/Makefile.am
r3570 r3588 11 11 pkgconfigdir = $(libdir)/pkgconfig 12 12 13 include_HEADERS = caca.h caca_types.h caca 0.h13 include_HEADERS = caca.h caca_types.h caca_conio.h caca0.h 14 14 15 15 lib_LTLIBRARIES = libcaca.la … … 21 21 caca_internals.h \ 22 22 caca_stubs.h \ 23 caca_conio.c \ 24 caca_conio.h \ 23 25 caca0.c \ 24 26 caca0.h \ … … 26 28 dirty.c \ 27 29 string.c \ 28 29 30 31 32 33 34 35 36 37 38 39 40 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 \ 41 43 graphics.c \ 42 44 event.c \ -
libcaca/trunk/configure.ac
r3512 r3588 104 104 AC_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) 105 105 AC_CHECK_FUNCS(signal ioctl snprintf vsnprintf getenv putenv strcasecmp htons) 106 AC_CHECK_FUNCS(usleep gettimeofday )106 AC_CHECK_FUNCS(usleep gettimeofday atexit) 107 107 108 108 ac_cv_have_getopt_long="no" -
libcaca/trunk/examples/.gitignore
r2824 r3588 2 2 canvas 3 3 colors 4 conio 4 5 demo 5 6 demo0 -
libcaca/trunk/examples/Makefile.am
r3404 r3588 3 3 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/caca -I$(top_builddir)/caca 4 4 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 import5 noinst_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 6 6 7 7 blit_SOURCES = blit.c … … 13 13 colors_SOURCES = colors.c 14 14 colors_LDADD = ../caca/libcaca.la 15 16 conio_SOURCES = conio.c 17 conio_LDADD = ../caca/libcaca.la 15 18 16 19 demo_SOURCES = demo.c
Note: See TracChangeset
for help on using the changeset viewer.