Changeset 1086
- Timestamp:
- Sep 23, 2006, 1:26:56 AM (14 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r1074 r1086 66 66 [ --enable-doc build documentation (needs doxygen and LaTeX)]) 67 67 68 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)68 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) 69 69 AC_CHECK_FUNCS(signal ioctl vsnprintf getenv putenv strcasecmp htons) 70 AC_CHECK_FUNCS(usleep gettimeofday getopt_long)70 AC_CHECK_FUNCS(usleep gettimeofday) 71 71 72 72 AC_MSG_CHECKING(for Sleep) … … 87 87 AC_DEFINE(HAVE_FLDLN2, 1, [Define to 1 if you have the `fldln2' and other floating points operands.])], 88 88 [AC_MSG_RESULT(no)]) 89 90 AC_CHECK_FUNCS(getopt_long,91 [AC_DEFINE(HAVE_GETOPT_LONG, 1, Define to 1 if you have the `getopt_long' function.)],92 [AC_CHECK_LIB(gnugetopt, getopt_long,93 [AC_DEFINE(HAVE_GETOPT_LONG, 1, Define to 1 if you have the `getopt_long' function.)94 GETOPT_LIBS="${GETOPT_LIBS} -lgnugetopt"])])95 89 96 90 AC_CHECK_LIB(m, sin, MATH_LIBS="${MATH_LIBS} -lm") -
libcaca/trunk/test
- Property svn:ignore
-
old new 18 18 spritedit 19 19 text 20 toilet21 20 transform 22 21 truecolor
-
- Property svn:ignore
-
libcaca/trunk/test/Makefile.am
r1075 r1086 3 3 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I$(top_srcdir)/caca -DDATADIR=\"$(pkgdatadir)\" 4 4 5 noinst_PROGRAMS = colors demo demo0 dithering event export font frames gamma hsv input spritedit font2tga text t oilet transform truecolor unicode import5 noinst_PROGRAMS = colors demo demo0 dithering event export font frames gamma hsv input spritedit font2tga text transform truecolor unicode import 6 6 7 7 colors_SOURCES = colors.c … … 47 47 text_LDADD = ../cucul/libcucul.la 48 48 49 toilet_SOURCES = toilet.c50 toilet_LDADD = ../cucul/libcucul.la @GETOPT_LIBS@51 52 49 transform_SOURCES = transform.c 53 50 transform_LDADD = ../caca/libcaca.la ../cucul/libcucul.la @CACA_LIBS@
Note: See TracChangeset
for help on using the changeset viewer.