Changeset 207
- Timestamp:
- Nov 22, 2003, 1:53:55 PM (17 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 8 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/Makefile.am
r202 r207 3 3 ############################################################################### 4 4 5 SUBDIRS = src examples 5 SUBDIRS = src examples doc 6 6 DIST_SUBDIRS = $(SUBDIRS) autotools debian 7 7 8 8 EXTRA_DIST = BUGS bootstrap caca-config.in 9 AUTOMAKE_OPTIONS = foreigndist-bzip29 AUTOMAKE_OPTIONS = dist-bzip2 10 10 11 11 bin_SCRIPTS = caca-config -
libcaca/trunk/configure.ac
r202 r207 1 1 # $Id$ 2 2 3 AC_INIT( libcaca,0.0cvs-20031110)3 AC_INIT(src/caca.c) 4 4 5 5 AC_PREREQ(2.50) 6 AC_CONFIG_SRCDIR(src/caca.c)7 6 AC_CONFIG_AUX_DIR(autotools) 8 7 AC_CANONICAL_SYSTEM 9 8 10 AM_INIT_AUTOMAKE(libcaca, 0.0cvs-20031110)9 AM_INIT_AUTOMAKE(libcaca, 0.1) 11 10 AM_CONFIG_HEADER(config.h) 12 11 … … 49 48 AC_DEFINE(USE_SLANG, 1, Define if the backend driver is slang) 50 49 USE_SLANG=: 50 else 51 AC_MSG_ERROR([could not find any terminal graphics interface]) 51 52 fi 52 53 … … 61 62 # Build the PIC library? 62 63 case "${target_os}" in 63 *mingw32* | *cygwin* )64 *mingw32* | *cygwin* | *djgpp*) 64 65 NEED_PIC=false 65 66 ;; … … 68 69 ;; 69 70 esac 71 AM_CONDITIONAL(NEED_PIC, ${NEED_PIC}) 70 72 71 AM_CONDITIONAL(NEED_PIC, ${NEED_PIC}) 73 # Build documentation? 74 AC_PATH_PROG(DOXYGEN, doxygen, no) 75 AM_CONDITIONAL(DOXYGEN, test "${DOXYGEN}" != "no") 76 AC_PATH_PROG(LATEX, latex, no) 77 AC_MSG_CHECKING(for a4wide.sty) 78 if test -f /usr/share/texmf/tex/latex/misc/a4wide.sty; then 79 AC_MSG_RESULT(yes) 80 else 81 LATEX=no 82 AC_MSG_RESULT(no) 83 fi 84 AM_CONDITIONAL(LATEX, test "${LATEX}" != "no") 72 85 73 86 AC_OUTPUT([ … … 75 88 src/Makefile 76 89 examples/Makefile 90 doc/Makefile 77 91 autotools/Makefile 78 92 debian/Makefile
Note: See TracChangeset
for help on using the changeset viewer.