Don't build docs by default even if the tools are available. Basically the problem...
authorRalph Giles <giles@xiph.org>
Mon, 21 Jul 2003 17:22:17 +0000 (17:22 +0000)
committerRalph Giles <giles@xiph.org>
Mon, 21 Jul 2003 17:22:17 +0000 (17:22 +0000)
svn path=/trunk/vorbis/; revision=5158

configure.in

index b80c157..e8ca131 100644 (file)
@@ -43,12 +43,12 @@ AM_PROG_LIBTOOL
 
 dnl docbook xml transform and processing tools
 AC_ARG_ENABLE(docs,
-  [  --disable-docs          don't build the documentation],
+  [  --enable-docs          build the documentation],
   [case "${enableval}" in
     yes) build_docs=true;;
     no)  build_docs=false;;
     *)   AC_MSG_ERROR(unknown value ${enableval} for --enable-docs);;
-  esac],[build_docs=true])
+  esac],[build_docs=false])
 
 dnl ideally we'd look for other tools and support them
 if test x$build_docs = xtrue; then