From a0084d5af9791edbda0176e7650a1eb40975710b Mon Sep 17 00:00:00 2001 From: =?utf8?q?H=C3=A9not=20David?= Date: Thu, 31 Aug 2000 15:10:16 +0000 Subject: [PATCH] Made ingres extension use --with--ingres instead of --with-ii. Andi actualy changed only the help line. --- ext/ingres_ii/config.m4 | 8 ++++---- 1 file 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 -- 2.50.1