[lwatch-cvs] files configure.ac,1.43,1.44
Brought to you by:
arturcz
|
From: Artur R. C. <ar...@us...> - 2004-08-11 23:02:28
|
Update of /cvsroot/lwatch/files In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9888 Modified Files: configure.ac Log Message: Replace # with dnl Index: configure.ac =================================================================== RCS file: /cvsroot/lwatch/files/configure.ac,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** configure.ac 11 Aug 2004 22:56:08 -0000 1.43 --- configure.ac 11 Aug 2004 23:02:17 -0000 1.44 *************** *** 17,24 **** CFLAGS="-Wall ${CFLAGS}" ! #if test "$cache_file" = /dev/null; then ! # cache_file="config.cache" ! #fi ! #AC_CACHE_LOAD AC_PREFIX_DEFAULT(/usr/local) --- 17,24 ---- CFLAGS="-Wall ${CFLAGS}" ! dnl if test "$cache_file" = /dev/null; then ! dnl cache_file="config.cache" ! dnl fi ! dnl AC_CACHE_LOAD AC_PREFIX_DEFAULT(/usr/local) *************** *** 51,55 **** esac ! # Checks for programs. AC_PROG_CC AC_PROG_INSTALL --- 51,55 ---- esac ! dnl Checks for programs. AC_PROG_CC AC_PROG_INSTALL *************** *** 61,85 **** fi ! #AC_PATH_PROG(dbook2man,[docbook-to-man],[no]) ! #if test "$dbook2man" = "no"; then ! # unset ac_cv_path_dbook2man ! # AC_PATH_PROG(dbook2man,[docbook2man],[no]) ! # if test "$dbook2man" = "no"; then ! # AC_MSG_WARN([docbook-to-man not found, using lwatch.1.in stub]) ! # else ! # dbook2man_out="" ! # dbook2man_out_in="&& mv -f lwatch.1 lwatch.1.in" ! # AC_MSG_WARN([you could have bad formatted manual page, see README for details]) ! # sleep 5 ! # fi ! #else ! # dbook2man_out="> lwatch.1" ! # dbook2man_out_in="> lwatch.1.in" ! #fi ! #AC_SUBST(dbook2man_out) ! #AC_SUBST(dbook2man_out_in) ! #if test "$dbook2man" != "no"; then ! # AC_MSG_NOTICE([sgml->man: ${dbook2man} lwatch.sgml ${dbook2man_out}]) ! #fi AC_PATH_PROG(dbook2man,[docbook-to-man],[no]) --- 61,85 ---- fi ! dnl AC_PATH_PROG(dbook2man,[docbook-to-man],[no]) ! dnl if test "$dbook2man" = "no"; then ! dnl unset ac_cv_path_dbook2man ! dnl AC_PATH_PROG(dbook2man,[docbook2man],[no]) ! dnl if test "$dbook2man" = "no"; then ! dnl AC_MSG_WARN([docbook-to-man not found, using lwatch.1.in stub]) ! dnl else ! dnl dbook2man_out="" ! dnl dbook2man_out_in="&& mv -f lwatch.1 lwatch.1.in" ! dnl AC_MSG_WARN([you could have bad formatted manual page, see README for details]) ! dnl sleep 5 ! dnl fi ! dnl else ! dnl dbook2man_out="> lwatch.1" ! dnl dbook2man_out_in="> lwatch.1.in" ! dnl fi ! dnl AC_SUBST(dbook2man_out) ! dnl AC_SUBST(dbook2man_out_in) ! dnl if test "$dbook2man" != "no"; then ! dnl AC_MSG_NOTICE([sgml->man: ${dbook2man} lwatch.sgml ${dbook2man_out}]) ! dnl fi AC_PATH_PROG(dbook2man,[docbook-to-man],[no]) *************** *** 110,124 **** fi ! # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([errno.h fcntl.h getopt.h pcre.h signal.h stdarg.h stddef.h stdio.h stdlib.h string.h sys/param.h sys/poll.h sys/stat.h sys/types.h unistd.h]) ! # Checks for libraries. AC_CHECK_LIB([pcre], [pcre_version],, AC_MSG_ERROR([Error: libpcre not installed. Install first. ])) ! # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST ! # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC --- 110,124 ---- fi ! dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([errno.h fcntl.h getopt.h pcre.h signal.h stdarg.h stddef.h stdio.h stdlib.h string.h sys/param.h sys/poll.h sys/stat.h sys/types.h unistd.h]) ! dnl Checks for libraries. AC_CHECK_LIB([pcre], [pcre_version],, AC_MSG_ERROR([Error: libpcre not installed. Install first. ])) ! dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST ! dnl Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC *************** *** 132,137 **** fi ! # Define autoheader templates ! # Checks for user options AC_MSG_CHECKING(for compile with diagnostic messages) AC_ARG_ENABLE(debug, --- 132,137 ---- fi ! dnl Define autoheader templates ! dnl Checks for user options AC_MSG_CHECKING(for compile with diagnostic messages) AC_ARG_ENABLE(debug, *************** *** 150,154 **** if test "$enable_resize" = "yes"; then AC_DEFINE(RESIZE) ! # LDFLAGS="${LDFLAGS} -lcurses" fi --- 150,154 ---- if test "$enable_resize" = "yes"; then AC_DEFINE(RESIZE) ! dnl LDFLAGS="${LDFLAGS} -lcurses" fi *************** *** 173,177 **** AC_DEFINE_UNQUOTED(INPUTFILE,"${INPUTFILE}") ! # Epilog AC_CONFIG_FILES([src/Makefile doc/Makefile Makefile]) AC_OUTPUT --- 173,177 ---- AC_DEFINE_UNQUOTED(INPUTFILE,"${INPUTFILE}") ! dnl Epilog AC_CONFIG_FILES([src/Makefile doc/Makefile Makefile]) AC_OUTPUT |