|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-02-06 14:10 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 17:00:02 2025 UTC |
When running the following configure command: php-4.1.1>./configure --prefix=/opt/php --without-mysql --with-apxs=/opt/apache/bin/apxs --with-custom-odbc=/duplicate/sybase/SYBSsa7 I would get the following error: <snip> checking for Empress support... no checking for Empress local access support... no checking for Velocis support... no checking for a custom ODBC support... yes ./configure: test: argument expected Investigation revealed that the $shared variable on line 36356 of the configure script was not quoted: if test $shared != "yes"; then After quoting the $shared variable, the configure completed successfully: if test "$shared" != "yes"; then