: Bug #24210 :: ext/ncurses
| Bug #24210 | ext/ncurses | ||||
|---|---|---|---|---|---|
| Submitted: | 2003-06-16 15:11 UTC | Modified: | 2003-06-16 15:17 UTC | ||
| From: | admin at the66 dot org | Assigned: | |||
| Status: | Closed | Package: | *Configuration Issues | ||
| PHP Version: | 4CVS-2003-06-16 (stable) | OS: | Redhat 7.2 | ||
| Private report: | No | CVE-ID: | None | ||
[2003-06-16 15:11 UTC] admin at the66 dot org
Description:
------------
you should modify your config.m4 for correct detecting pressence of assume_default_colors()
diff follows..
--- config.m4 Mon Jun 16 21:44:28 2003
+++ config.m4.new Mon Jun 16 21:49:57 2003
@@ -56,7 +56,7 @@
AC_CHECK_LIB($LIBNAME, color_set, [AC_DEFINE(HAVE_NCURSES_COLOR_SET, 1, [ ])])
AC_CHECK_LIB($LIBNAME, slk_color, [AC_DEFINE(HAVE_NCURSES_SLK_COLOR, 1, [ ])])
- AC_CHECK_LIB($LIBNAME, asume_default_colors, [AC_DEFINE(HAVE_NCURSES_ASSUME_DEFAULT_COLORS, 1, [ ])])
+ AC_CHECK_LIB($LIBNAME, assume_default_colors, [AC_DEFINE(HAVE_NCURSES_ASSUME_DEFAULT_COLORS, 1, [ ])])
AC_CHECK_LIB($LIBNAME, use_extended_names, [AC_DEFINE(HAVE_NCURSES_USE_EXTENDED_NAMES, 1, [ ])])
PHP_NEW_EXTENSION(ncurses, ncurses.c ncurses_fe.c ncurses_functions.c, $ext_shared, cli)
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2003-06-16 15:17 UTC] pollita@php.net