- reflection not reflectino

This commit is contained in:
Marcus Boerger 2005-11-17 22:49:03 +00:00
parent 3d6e4e85b3
commit 0be9760a60
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ PHP_ARG_ENABLE(reflection, whether to enable reflection support,
if test "$PHP_REFLECTION" != "no"; then
if test "$ext_shared" = "yes"; then
AC_MSG_ERROR(Cannot build reflectino as a shared module)
AC_MSG_ERROR(Cannot build reflection as a shared module)
fi
PHP_NEW_EXTENSION(reflection, php_reflection.c)
fi

View File

@ -4,6 +4,6 @@
ARG_ENABLE("reflection", "disable reflection support", "yes");
if (PHP_REFLECTION != "no") {
EXTENSION("reflectino", "php_reflection.c");
EXTENSION("reflection", "php_reflection.c");
}