[Refdb-cvs] CVS: refdb configure.in,1.49.2.28,1.49.2.29
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2006-01-11 00:08:32
|
Update of /cvsroot/refdb/refdb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17044 Modified Files: Tag: Release_0_9_5_stable configure.in Log Message: build doc and man subdirs by default;changed --enable-docs to --disable-docs;bumped up version number Index: configure.in =================================================================== RCS file: /cvsroot/refdb/refdb/configure.in,v retrieving revision 1.49.2.28 retrieving revision 1.49.2.29 diff -u -U2 -r1.49.2.28 -r1.49.2.29 --- configure.in 26 Dec 2005 22:05:18 -0000 1.49.2.28 +++ configure.in 11 Jan 2006 00:08:24 -0000 1.49.2.29 @@ -10,5 +10,5 @@ dnl Use automake -AM_INIT_AUTOMAKE(refdb, 0.9.7-pre1) +AM_INIT_AUTOMAKE(refdb, 0.9.7-pre2) dnl switch on GNU extensions @@ -112,11 +112,13 @@ dnl see whether we should build the docs -ac_docs="NO" +ac_docs="YES" AC_ARG_ENABLE(docs, - [ --enable-docs Build the documentation.], - [ ac_docs="YES" ]) + [ --disable-docs do not build and install the documentation.], + [ ac_docs="NO" ]) if test "$ac_docs" = "YES"; then -docs_subdirs="doc" +docs_subdirs="doc man" +else +docs_subdirs="" fi |