ID:               15404
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Closed
 Bug Type:         *Compile Issues
 Operating System: Solaris 8
 PHP Version:      4.1.1
 New Comment:

This bug has been fixed in CVS.


Previous Comments:
------------------------------------------------------------------------

[2002-02-06 14:02:51] [EMAIL PROTECTED]

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


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=15404&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to