--- psiconv/trunk/configure.in 1999/10/03 21:10:47 2 +++ psiconv/trunk/configure.in 1999/10/13 15:02:21 15 @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(psiconv) -AM_INIT_AUTOMAKE(psiconv,0.5.0) +AM_INIT_AUTOMAKE(psiconv,0.5.0a) AM_CONFIG_HEADER(config.h) @@ -113,4 +113,13 @@ esac],[asciidocs=false]) AM_CONDITIONAL(ASCIIDOCS,test x$asciidocs = xtrue) +AC_ARG_ENABLE(rtf-docs, +[ --enable-rtf-docs Enable generation of RTF docs (default: off)], +[case "${enableval}" in + yes) rtfdocs=true ;; + no) rtfdocs=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;; +esac],[rtfdocs=false]) +AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue) + AC_OUTPUT([Makefile compat/Makefile lib/Makefile psiconv/Makefile lib/general.h formats/Makefile docs/Makefile])