[lwatch-cvs] files TODO,1.42,1.43 configure.ac,1.46,1.47
Brought to you by:
arturcz
|
From: Artur R. C. <ar...@us...> - 2004-08-14 17:34:14
|
Update of /cvsroot/lwatch/files In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16361 Modified Files: TODO configure.ac Log Message: By default place input fifo in ${localstatedir}/lib/syslog.fifo Index: configure.ac =================================================================== RCS file: /cvsroot/lwatch/files/configure.ac,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** configure.ac 14 Aug 2004 15:47:06 -0000 1.46 --- configure.ac 14 Aug 2004 17:34:05 -0000 1.47 *************** *** 159,170 **** AM_CONDITIONAL(HAVE_D2M, test "$dbook2man" != "no") AC_MSG_CHECKING(for default input file) AC_ARG_ENABLE(input, ! AC_HELP_STRING([--enable-input=file],[Specify default input file other than /var/lwatch/syslog.fifo]), ,[enable_input="yes"]) if test "$enable_input" = "no"; then ! enable_input="/var/lwatch/syslog.fifo" fi if test "$enable_input" = "yes"; then ! enable_input="/var/lwatch/syslog.fifo" fi AC_MSG_RESULT($enable_input); --- 159,171 ---- AM_CONDITIONAL(HAVE_D2M, test "$dbook2man" != "no") + arc_localstatedir=`eval echo $localstatedir` AC_MSG_CHECKING(for default input file) AC_ARG_ENABLE(input, ! AC_HELP_STRING([--enable-input=file],[Specify default input file other than ${localstatedir}/lib/syslog.fifo]), ,[enable_input="yes"]) if test "$enable_input" = "no"; then ! enable_input=${arc_localstatedir}/lib/syslog.fifo fi if test "$enable_input" = "yes"; then ! enable_input=${arc_localstatedir}/lib/syslog.fifo fi AC_MSG_RESULT($enable_input); Index: TODO =================================================================== RCS file: /cvsroot/lwatch/files/TODO,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** TODO 14 Aug 2004 15:55:04 -0000 1.42 --- TODO 14 Aug 2004 17:34:05 -0000 1.43 *************** *** 3,7 **** Now (for 0.4): - - localstatedir -> /var Later (for 0.5): --- 3,6 ---- |