- Timestamp:
- Nov 27, 2006, 3:55:00 PM (15 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r1427 r1439 76 76 [ --enable-doc build documentation (needs doxygen and LaTeX)]) 77 77 78 AC_CHECK_HEADERS(stdio.h stdarg.h signal.h sys/ioctl.h sys/time.h inttypes.h endian.h unistd.h arpa/inet.h netinet/in.h winsock2.h errno.h locale.h getopt.h dlfcn.h pty.h)78 AC_CHECK_HEADERS(stdio.h stdarg.h signal.h sys/ioctl.h sys/time.h inttypes.h endian.h unistd.h arpa/inet.h netinet/in.h winsock2.h errno.h locale.h getopt.h dlfcn.h) 79 79 AC_CHECK_FUNCS(signal ioctl vsnprintf getenv putenv strcasecmp htons) 80 80 AC_CHECK_FUNCS(usleep gettimeofday) … … 106 106 107 107 AC_CHECK_LIB(m, sin, MATH_LIBS="${MATH_LIBS} -lm") 108 AC_CHECK_LIB(util, forkpty, UTIL_LIBS="${UTIL_LIBS} -lutil")109 108 110 109 CACA_DRIVERS="" … … 279 278 280 279 AC_SUBST(MATH_LIBS) 281 AC_SUBST(UTIL_LIBS)282 280 AC_SUBST(GETOPT_LIBS) 283 281 AC_SUBST(CACA_LIBS) … … 290 288 # [Jylam] Removed -Wshadow in order to avoid ncurses/gl conflict 291 289 # (Comme quoi on est pas les seuls porcs) 292 CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -W aggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare"290 CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare" 293 291 294 292 # Build the C++ bindings? -
libcaca/trunk/test/Makefile.am
r1435 r1439 3 3 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\" 4 4 5 noinst_PROGRAMS = blit colors cucul demo demo0 dithering event export font font2tga frames fullwidth gamma hsv input spritedit swallow text transform truecolor unicode import $(fcntl_programs)5 noinst_PROGRAMS = blit colors cucul demo demo0 dithering event export font font2tga frames fullwidth gamma hsv input spritedit swallow text transform truecolor unicode import 6 6 7 7 blit_SOURCES = blit.c … … 59 59 swallow_LDADD = ../caca/libcaca.la ../cucul/libcucul.la 60 60 61 term_SOURCES = term.c62 term_LDADD = ../caca/libcaca.la ../cucul/libcucul.la63 term_LDFLAGS = @UTIL_LIBS@64 65 61 text_SOURCES = text.c 66 62 text_LDADD = ../cucul/libcucul.la … … 78 74 import_LDADD = ../caca/libcaca.la ../cucul/libcucul.la 79 75 80 if USE_NETWORK81 fcntl_programs = term82 else83 fcntl_programs =84 endif
Note: See TracChangeset
for help on using the changeset viewer.