[lwatch-cvs] files configure.ac,1.37,1.38
Brought to you by:
arturcz
|
From: <os...@us...> - 2004-01-11 23:22:14
|
Update of /cvsroot/lwatch/files
In directory sc8-pr-cvs1:/tmp/cvs-serv1446
Modified Files:
configure.ac
Log Message:
[Unusable changes]
Added --enable_curses configure option.
Added --term-cut lwatch option.
Added SIGWINCH handler.
...
And other preparations for closing "optionaly cut line in xterm" TODO.
Index: configure.ac
===================================================================
RCS file: /cvsroot/lwatch/files/configure.ac,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** configure.ac 11 Jan 2004 22:02:07 -0000 1.37
--- configure.ac 11 Jan 2004 23:22:11 -0000 1.38
***************
*** 127,130 ****
--- 127,140 ----
fi
+ AC_MSG_CHECKING(for compile with curses)
+ AC_ARG_ENABLE(curses,
+ AC_HELP_STRING([--enable-curses],[Compile with curses]), ,
+ [enable_curses="yes"])
+ AC_MSG_RESULT($enable_curses)
+ if test "$enable_curses" = "yes"; then
+ AC_DEFINE(CURSES)
+ LDFLAGS="${LDFLAGS} -lcurses"
+ fi
+
arc_sysconfdir=`eval echo $sysconfdir`
AC_DEFINE_UNQUOTED(SYSCONFDIR,"$arc_sysconfdir")
|