From 34c2d8f7a2bbd24af5ea478a3d6659f7d716edd4 Mon Sep 17 00:00:00 2001 From: foobar Date: Tue, 25 Nov 2003 08:08:30 +0000 Subject: [PATCH] MFH: - Fixed bug #26376 (typo in ext/odbc/config.m4: DBMaker test fails) --- NEWS | 1 + ext/odbc/config.m4 | 6 ++---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 1c0ee37b0d..9dfa825b6c 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ PHP 4 NEWS ?? ??? 2003, Version 4.3.5 - Fixed header handler in NSAPI SAPI module (header->replace was ignored, send_default_content_type now sends value from php.ini). (Uwe Schindler) +- Fixed bug #26376 (typo in ext/odbc/config.m4: DBMaker test fails). (Jani) - Fixed bug #26384 (crash in domxslt->process()). (Ilia) - Fixed bug #26355 (flock() doesn't initialize the wouldblock argument). (Ilia) - Fixed bug #26309 (Fixed argument parsing for imageftbbox()). (Ilia) diff --git a/ext/odbc/config.m4 b/ext/odbc/config.m4 index ecc28e731d..8c7eb01ba2 100644 --- a/ext/odbc/config.m4 +++ b/ext/odbc/config.m4 @@ -454,11 +454,9 @@ AC_ARG_WITH(dbmaker, # check DBMaker version (from 5.0 to 2.0) DBMAKER_VERSION=5.0 - while test test ! -d $DBMAKER_HOME/$DBMAKER_VERSION -a \ - "$DBMAKER_VERSION" != "2.9"; do + while test ! -d $DBMAKER_HOME/$DBMAKER_VERSION -a "$DBMAKER_VERSION" != "2.9"; do DM_VER=`echo $DBMAKER_VERSION | sed -e 's/\.//' | awk '{ print $1-1;}'` - MAJOR_V=`echo $DM_VER | awk '{ print $1/10; }' \ - | awk -F. '{ print $1; }'` + MAJOR_V=`echo $DM_VER | awk '{ print $1/10; }' | awk -F. '{ print $1; }'` MINOR_V=`echo $DM_VER | awk '{ print $1%10; }'` DBMAKER_VERSION=$MAJOR_V.$MINOR_V done -- 2.40.0