diff options
author | Sascha Schumann <sas@php.net> | 2002-03-12 16:44:00 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-03-12 16:44:00 +0000 |
commit | 5cba3a99c207c338b70e8bca7d434c975e5c5a4a (patch) | |
tree | c356384e4fddf3796977139e4bf249f2a416d84d /ext/ctype | |
parent | 3c47fb91e84d710c0f63658d1834e8cac6b49d60 (diff) | |
download | php-git-5cba3a99c207c338b70e8bca7d434c975e5c5a4a.tar.gz |
extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed
Diffstat (limited to 'ext/ctype')
-rw-r--r-- | ext/ctype/Makefile.in | 8 | ||||
-rw-r--r-- | ext/ctype/config.m4 | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/ext/ctype/Makefile.in b/ext/ctype/Makefile.in deleted file mode 100644 index 940398455b..0000000000 --- a/ext/ctype/Makefile.in +++ /dev/null @@ -1,8 +0,0 @@ -# $Id$ - -LTLIBRARY_NAME = libctype.la -LTLIBRARY_SOURCES = ctype.c -LTLIBRARY_SHARED_NAME = ctype.la -LTLIBRARY_SHARED_LIBADD = $(CTYPE_SHARED_LIBADD) - -include $(top_srcdir)/build/dynlib.mk diff --git a/ext/ctype/config.m4 b/ext/ctype/config.m4 index d4ae56b92e..7d575a3adc 100644 --- a/ext/ctype/config.m4 +++ b/ext/ctype/config.m4 @@ -7,5 +7,5 @@ PHP_ARG_ENABLE(ctype, whether to enable ctype functions, if test "$PHP_CTYPE" != "no"; then AC_DEFINE(HAVE_CTYPE, 1, [ ]) - PHP_EXTENSION(ctype, $ext_shared) + PHP_NEW_EXTENSION(ctype, ctype.c, $ext_shared) fi |