diff options
author | Sascha Schumann <sas@php.net> | 2002-03-12 16:53:19 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-03-12 16:53:19 +0000 |
commit | 283b860c588726231efd4c4f1a2a4e65cac18eae (patch) | |
tree | 3ef8d8eb62014ee243275d98372aef1180949a3e /ext/ncurses | |
parent | 06473e08a525543b30259b55841621b3f8b6eea7 (diff) | |
download | php-git-283b860c588726231efd4c4f1a2a4e65cac18eae.tar.gz |
php_new_extension
Diffstat (limited to 'ext/ncurses')
-rw-r--r-- | ext/ncurses/Makefile.in | 8 | ||||
-rw-r--r-- | ext/ncurses/config.m4 | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/ext/ncurses/Makefile.in b/ext/ncurses/Makefile.in deleted file mode 100644 index 359ed0f423..0000000000 --- a/ext/ncurses/Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ -# $Id$ - -LTLIBRARY_NAME = libncurses.la -LTLIBRARY_SOURCES = ncurses.c ncurses_fe.c ncurses_functions.c -LTLIBRARY_SHARED_NAME = ncurses.la -LTLIBRARY_SHARED_LIBADD = $(NCURSES_SHARED_LIBADD) - -include $(top_srcdir)/build/dynlib.mk diff --git a/ext/ncurses/config.m4 b/ext/ncurses/config.m4 index 120d3bb449..14cb896981 100644 --- a/ext/ncurses/config.m4 +++ b/ext/ncurses/config.m4 @@ -49,7 +49,7 @@ if test "$PHP_NCURSES" != "no"; then AC_CHECK_LIB(ncurses, asume_default_colors, [AC_DEFINE(HAVE_NCURSES_ASSUME_DEFAULT_COLORS, 1, [ ])]) AC_CHECK_LIB(ncurses, use_extended_names, [AC_DEFINE(HAVE_NCURSES_USE_EXTENDED_NAMES, 1, [ ])]) - PHP_EXTENSION(ncurses, $ext_shared, cli) + PHP_NEW_EXTENSION(ncurses, ncurses.c ncurses_fe.c ncurses_functions.c, $ext_shared, cli) PHP_SUBST(NCURSES_SHARED_LIBADD) fi |