From:             [EMAIL PROTECTED]
Operating system: Solaris 8
PHP version:      4.1.1
PHP Bug Type:     *Compile Issues
Bug description:  $shared variable not quoted on line 36356 of configure script

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 bug report at http://bugs.php.net/?id=15404&edit=1
-- 
Fixed in CVS:        http://bugs.php.net/fix.php?id=15404&r=fixedcvs
Fixed in release:    http://bugs.php.net/fix.php?id=15404&r=alreadyfixed
Need backtrace:      http://bugs.php.net/fix.php?id=15404&r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=15404&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=15404&r=support
Expected behavior:   http://bugs.php.net/fix.php?id=15404&r=notwrong
Not enough info:     http://bugs.php.net/fix.php?id=15404&r=notenoughinfo


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

Reply via email to