[lwatch-cvs] files configure,1.14,1.15 configure.ac,1.9,1.10
Brought to you by:
arturcz
|
From: <ar...@us...> - 2003-03-13 01:12:46
|
Update of /cvsroot/lwatch/files
In directory sc8-pr-cvs1:/tmp/cvs-serv20047
Modified Files:
configure configure.ac
Log Message:
configure,ac: --disable-manual really works
other: automagically regenerated
Index: configure
===================================================================
RCS file: /cvsroot/lwatch/files/configure,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** configure 12 Mar 2003 22:23:45 -0000 1.14
--- configure 13 Mar 2003 01:12:43 -0000 1.15
***************
*** 1,4 ****
#! /bin/sh
! # From configure.ac Revision: 1.8 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.57 for lwatch 0.1.
--- 1,4 ----
#! /bin/sh
! # From configure.ac Revision: 1.9 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.57 for lwatch 0.1.
***************
*** 1739,1770 ****
fi
echo "$as_me:$LINENO: checking for manual rebuild" >&5
echo $ECHO_N "checking for manual rebuild... $ECHO_C" >&6
-
# Check whether --enable-manual or --disable-manual was given.
if test "${enable_manual+set}" = set; then
enableval="$enable_manual"
! enable_manual="yes"
else
! enable_manual="no"
fi;
echo "$as_me:$LINENO: result: $enable_manual" >&5
echo "${ECHO_T}$enable_manual" >&6
! if test "$enable_manual" = "yes"; then
! if test "$ac_check_dist" = "yes"; then
! if test "$dbook2man" = "no"; then
! { { echo "$as_me:$LINENO: error: docbook-to-man not found, cannot build manual" >&5
! echo "$as_me: error: docbook-to-man not found, cannot build manual" >&2;}
! { (exit 1); exit 1; }; }
! fi
! else
! if test "$dbook2man" = "no"; then
! { { echo "$as_me:$LINENO: error: docbook-to-man not found, cannot prepare manual" >&5
! echo "$as_me: error: docbook-to-man not found, cannot prepare manual" >&2;}
! { (exit 1); exit 1; }; }
! fi
! fi
! fi
# Checks for programs.
--- 1739,1767 ----
fi
+
echo "$as_me:$LINENO: checking for manual rebuild" >&5
echo $ECHO_N "checking for manual rebuild... $ECHO_C" >&6
# Check whether --enable-manual or --disable-manual was given.
if test "${enable_manual+set}" = set; then
enableval="$enable_manual"
!
else
! enable_manual="yes"
!
fi;
echo "$as_me:$LINENO: result: $enable_manual" >&5
echo "${ECHO_T}$enable_manual" >&6
! #if test "$enable_manual" = "yes"; then
! # if test "$ac_check_dist" = "yes"; then
! # if test "$dbook2man" = "no"; then
! # AC_MSG_ERROR([docbook-to-man not found, cannot build manual])
! # fi
! # else
! # if test "$dbook2man" = "no"; then
! # AC_MSG_ERROR([docbook-to-man not found, cannot prepare manual])
! # fi
! # fi
! #fi
# Checks for programs.
Index: configure.ac
===================================================================
RCS file: /cvsroot/lwatch/files/configure.ac,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** configure.ac 12 Mar 2003 22:23:46 -0000 1.9
--- configure.ac 13 Mar 2003 01:12:43 -0000 1.10
***************
*** 15,38 ****
AC_PATH_PROG(dbook2man,[docbook-to-man],[no])
AC_CHECK_FILE([${srcdir}/distributed-package],[ac_check_dist="yes"],[ac_check_dist="no"])
- AC_MSG_CHECKING(for manual rebuild)
AC_ARG_ENABLE(manual,
AC_HELP_STRING(
[--enable-manual],
[Building manual from sgml, require docbook-to-man]),
! [enable_manual="yes"],[enable_manual="no"])
AC_MSG_RESULT($enable_manual)
! if test "$enable_manual" = "yes"; then
! if test "$ac_check_dist" = "yes"; then
! if test "$dbook2man" = "no"; then
! AC_MSG_ERROR([docbook-to-man not found, cannot build manual])
! fi
! else
! if test "$dbook2man" = "no"; then
! AC_MSG_ERROR([docbook-to-man not found, cannot prepare manual])
! fi
! fi
! fi
# Checks for programs.
--- 15,39 ----
AC_PATH_PROG(dbook2man,[docbook-to-man],[no])
AC_CHECK_FILE([${srcdir}/distributed-package],[ac_check_dist="yes"],[ac_check_dist="no"])
+ AC_MSG_CHECKING(for manual rebuild)
AC_ARG_ENABLE(manual,
AC_HELP_STRING(
[--enable-manual],
[Building manual from sgml, require docbook-to-man]),
! [],[enable_manual="yes"]
! )
AC_MSG_RESULT($enable_manual)
! #if test "$enable_manual" = "yes"; then
! # if test "$ac_check_dist" = "yes"; then
! # if test "$dbook2man" = "no"; then
! # AC_MSG_ERROR([docbook-to-man not found, cannot build manual])
! # fi
! # else
! # if test "$dbook2man" = "no"; then
! # AC_MSG_ERROR([docbook-to-man not found, cannot prepare manual])
! # fi
! # fi
! #fi
# Checks for programs.
|