Changeset 4820
- Timestamp:
- Jun 17, 2012, 2:36:15 PM (7 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r4819 r4820 4 4 AC_CONFIG_AUX_DIR(.auto) 5 5 AC_CANONICAL_SYSTEM 6 AM_INIT_AUTOMAKE([subdir-objects no-define tar-ustar silent-rules]) 6 dnl We cannot use subdir-objects because of a bug that will eg. remove 7 dnl ../src/.deps upon distclean when a file from ../src/ is used. 8 AM_INIT_AUTOMAKE([no-define tar-ustar silent-rules]) 7 9 dnl AM_MAINTAINER_MODE 8 10 … … 36 38 AC_TYPE_SIGNAL 37 39 38 dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right39 dnl now otherwise it might be set in an obscure if statement. Same thing for40 dnl PKG_PROG_PKG_CONFIG which needs to be called first.40 dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right 41 dnl now otherwise it might be set in an obscure if statement. Same thing for 42 dnl PKG_PROG_PKG_CONFIG which needs to be called first. 41 43 AC_EGREP_CPP(yes, foo) 42 44 PKG_PROG_PKG_CONFIG() … … 55 57 AC_SUBST(LT_SUFFIX) 56 58 57 dnl global configuration features59 dnl global configuration features 58 60 AC_ARG_ENABLE(kernel, 59 61 [ --enable-kernel kernel mode (default no)]) 60 62 61 dnl output driver features63 dnl output driver features 62 64 AC_ARG_ENABLE(slang, 63 65 [ --enable-slang slang graphics support (autodetected)]) … … 79 81 [ --enable-vga VGA support for kernel mode (autodetected)]) 80 82 81 dnl language bindings83 dnl language bindings 82 84 AC_ARG_ENABLE(csharp, 83 85 [ --enable-csharp C# bindings (autodetected)]) … … 91 93 [ --enable-ruby Ruby bindings (autodetected)]) 92 94 93 dnl example programs features95 dnl example programs features 94 96 AC_ARG_ENABLE(imlib2, 95 97 [ --enable-imlib2 Imlib2 graphics support (autodetected)]) 96 98 97 dnl conditional builds99 dnl conditional builds 98 100 AC_ARG_ENABLE(debug, 99 101 [ --enable-debug build debug versions of the library (default no)]) -
libcaca/trunk/src/Makefile.am
r4804 r4820 34 34 35 35 36 img2txt_SOURCES = img2txt.c $(GETOPT)common-image.c common-image.h36 img2txt_SOURCES = img2txt.c common-image.c common-image.h 37 37 img2txt_LDADD = ../caca/libcaca.la 38 38 img2txt_CFLAGS = $(IMLIB2_CFLAGS)
Note: See TracChangeset
for help on using the changeset viewer.