[790] in BarnOwl Developers
[D-O-H] r794 - branches/barnowl_unicode/owl
daemon@ATHENA.MIT.EDU (asedeno@MIT.EDU)
Thu Oct 29 18:09:45 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
To: dirty-owl-hackers@mit.edu
From: asedeno@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Wed, 2 Jan 2008 16:53:20 -0500 (EST)
Author: asedeno
Date: 2008-01-02 16:53:19 -0500 (Wed, 02 Jan 2008)
New Revision: 794
Modified:
branches/barnowl_unicode/owl/config.h.in
branches/barnowl_unicode/owl/configure.in
Log:
Remove options for libcurses and libncurses. This really only works
with libncursesw.
Modified: branches/barnowl_unicode/owl/config.h.in
===================================================================
--- branches/barnowl_unicode/owl/config.h.in 2008-01-02 18:56:33 UTC (rev 793)
+++ branches/barnowl_unicode/owl/config.h.in 2008-01-02 21:53:19 UTC (rev 794)
@@ -21,9 +21,6 @@
/* Define to 1 if you have the `com_err' library (-lcom_err). */
#undef HAVE_LIBCOM_ERR
-/* Define to 1 if you have the `curses' library (-lcurses). */
-#undef HAVE_LIBCURSES
-
/* Define to 1 if you have the `des425' library (-ldes425). */
#undef HAVE_LIBDES425
@@ -39,9 +36,6 @@
/* Define to 1 if you have the `krb5' library (-lkrb5). */
#undef HAVE_LIBKRB5
-/* Define to 1 if you have the `ncurses' library (-lncurses). */
-#undef HAVE_LIBNCURSES
-
/* Define to 1 if you have the `ncursesw' library (-lncursesw). */
#undef HAVE_LIBNCURSESW
Modified: branches/barnowl_unicode/owl/configure.in
===================================================================
--- branches/barnowl_unicode/owl/configure.in 2008-01-02 18:56:33 UTC (rev 793)
+++ branches/barnowl_unicode/owl/configure.in 2008-01-02 21:53:19 UTC (rev 794)
@@ -45,9 +45,7 @@
AC_MSG_RESULT(no)
fi
-AC_CHECK_LIB(ncursesw, initscr,,
- AC_CHECK_LIB(ncurses, initscr,,
- AC_CHECK_LIB(curses, initscr,, AC_MSG_ERROR(No curses library found.))))
+AC_CHECK_LIB(ncursesw, initscr,, AC_MSG_ERROR(No curses library found.))
AC_CHECK_LIB(com_err, com_err)
AC_CHECK_LIB(nsl, gethostbyname)
AC_CHECK_LIB(socket, socket)