|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-03-17 09:57 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Hi Branch: PHP_4_3, updated at 03/17/2003. configure script failed if defined --enable-sybase directive with error 'You can not use both --with-sybase and --with-sybase-ct in same build'. this patch fix the problem... maybe. --- ext/sybase_ct/config.m4.old 2003-03-17 17:20:59.479999000 +0200 +++ ext/sybase_ct/config.m4 2003-03-17 17:21:56.159999000 +0200 @@ -6,11 +6,11 @@ [ --with-sybase-ct[=DIR] Include Sybase-CT support. DIR is the Sybase home directory. Defaults to /home/sybase.]) -if test "$PHP_SYBASE" != "no"; then - AC_MSG_ERROR([You can not use both --with-sybase and --with-sybase-ct in same build!]) -fi - if test "$PHP_SYBASE_CT" != "no"; then + if test "$PHP_SYBASE" != "no"; then + AC_MSG_ERROR([You can not use both --with-sybase and --with-sybase-ct in same build!]) + fi PS: don't forget run ./buildconf