[lwatch-cvs] files configure.ac,1.38,1.39
Brought to you by:
arturcz
|
From: <os...@us...> - 2004-01-12 11:17:58
|
Update of /cvsroot/lwatch/files
In directory sc8-pr-cvs1:/tmp/cvs-serv15165
Modified Files:
configure.ac
Log Message:
Changed way of obtaining terminal width.
Index: configure.ac
===================================================================
RCS file: /cvsroot/lwatch/files/configure.ac,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** configure.ac 11 Jan 2004 23:22:11 -0000 1.38
--- configure.ac 12 Jan 2004 11:17:55 -0000 1.39
***************
*** 36,39 ****
--- 36,42 ----
[Default input file])
+ AH_TEMPLATE([RESIZE],
+ [Define to 1 if you want to compile with resize support.])
+
AC_MSG_CHECKING(for platform dependent directories)
case $target in
***************
*** 127,138 ****
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
--- 130,141 ----
fi
! AC_MSG_CHECKING(for compile with terminal resizing support)
! AC_ARG_ENABLE(resize,
! AC_HELP_STRING([--enable-resize],[Compile with terminal resizing support]), ,
! [enable_resize="yes"])
! AC_MSG_RESULT($enable_resize)
! if test "$enable_resize" = "yes"; then
! AC_DEFINE(RESIZE)
! # LDFLAGS="${LDFLAGS} -lcurses"
fi
|