diff options
Diffstat (limited to 'ext/ingres_ii')
-rw-r--r-- | ext/ingres_ii/config.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ingres_ii/config.m4 b/ext/ingres_ii/config.m4 index 8e71fe4dfc..294cb2a8a5 100644 --- a/ext/ingres_ii/config.m4 +++ b/ext/ingres_ii/config.m4 @@ -1,19 +1,19 @@ dnl $Id$ dnl config.m4 for extension ingres_ii -PHP_ARG_WITH(ii, for Ingres II support, +PHP_ARG_WITH(ingres, for Ingres II support, [ --with-ingres[=DIR] Include Ingres II support. DIR is the Ingres base directory (default $II_SYSTEM/II/ingres)], no) -if test "$PHP_II" != "no"; then +if test "$PHP_INGRES" != "no"; then AC_DEFINE(HAVE_II, 1, [Whether you have Ingres II]) PHP_EXTENSION(ingres_ii, $ext_shared) - if test "$PHP_II" = "yes"; then + if test "$PHP_INGRES" = "yes"; then II_DIR=$II_SYSTEM/ingres else - II_DIR=$PHP_II + II_DIR=$PHP_INGRES fi if test -r $II_DIR/files/iiapi.h; then |