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/yp | |
parent | 3c47fb91e84d710c0f63658d1834e8cac6b49d60 (diff) | |
download | php-git-5cba3a99c207c338b70e8bca7d434c975e5c5a4a.tar.gz |
extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed
Diffstat (limited to 'ext/yp')
-rw-r--r-- | ext/yp/Makefile.in | 6 | ||||
-rw-r--r-- | ext/yp/config.m4 | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/ext/yp/Makefile.in b/ext/yp/Makefile.in deleted file mode 100644 index 42cfa1351c..0000000000 --- a/ext/yp/Makefile.in +++ /dev/null @@ -1,6 +0,0 @@ - -LTLIBRARY_NAME = libyp.la -LTLIBRARY_SOURCES = yp.c -LTLIBRARY_SHARED_NAME = yp.la - -include $(top_srcdir)/build/dynlib.mk diff --git a/ext/yp/config.m4 b/ext/yp/config.m4 index a597eadfab..f5f912bc58 100644 --- a/ext/yp/config.m4 +++ b/ext/yp/config.m4 @@ -7,7 +7,7 @@ PHP_ARG_ENABLE(yp,whether to include YP support, if test "$PHP_YP" != "no"; then AC_DEFINE(HAVE_YP,1,[ ]) - PHP_EXTENSION(yp, $ext_shared) + PHP_NEW_EXTENSION(yp, yp.c, $ext_shared) case $host_alias in *solaris*) AC_DEFINE(SOLARIS_YP,1,[ ]) ;; |