Changeset 2101
- Timestamp:
- Dec 1, 2007, 12:48:39 AM (13 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 1 added
- 2 edited
- 24 moved
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/Makefile.am
r2060 r2101 1 1 # $Id$ 2 2 3 SUBDIRS = kernel cucul caca src testtools csharp cxx python ruby doc3 SUBDIRS = kernel cucul caca src examples tools csharp cxx python ruby doc 4 4 DIST_SUBDIRS = $(SUBDIRS) msvc 5 5 -
libcaca/trunk/configure.ac
r2096 r2101 80 80 dnl conditional builds 81 81 AC_ARG_ENABLE(debug, 82 [ --enable-debug build debug versions of the library ])82 [ --enable-debug build debug versions of the library (default no)]) 83 83 AC_ARG_ENABLE(plugins, 84 [ --enable-plugins build X11 and GL drivers as plugins])84 [ --enable-plugins make X11 and GL drivers plugins (default disabled)]) 85 85 AC_ARG_ENABLE(doc, 86 86 [ --enable-doc build documentation (needs doxygen and LaTeX)]) 87 AC_ARG_ENABLE(zzuf, 88 [ --enable-zzuf use zzuf for fuzzing tests (autodetected)]) 87 89 88 90 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 termios.h) … … 430 432 AM_CONDITIONAL(USE_LATEX, test "${LATEX}" != "no") 431 433 434 # Use zzuf for fuzzing tests? 435 ZZUF="no" 436 if test "${enable_zzuf}" != "no"; then 437 AC_PATH_PROG(ZZUF, zzuf, no) 438 fi 439 AM_CONDITIONAL(USE_ZZUF, test "${ZZUF}" != "no") 440 432 441 AC_CONFIG_FILES([ 433 442 Makefile … … 436 445 caca/Makefile 437 446 src/Makefile 438 test/Makefile447 examples/Makefile 439 448 tools/Makefile 440 449 csharp/Makefile
Note: See TracChangeset
for help on using the changeset viewer.