sniper Thu Mar 13 12:27:28 2003 EDT Modified files: /php4/ext/sybase_ct config.m4 Log: Prevent using both --with-sybase and --with-sybase-ct in same build Index: php4/ext/sybase_ct/config.m4 diff -u php4/ext/sybase_ct/config.m4:1.11 php4/ext/sybase_ct/config.m4:1.12 --- php4/ext/sybase_ct/config.m4:1.11 Tue Mar 12 11:36:30 2002 +++ php4/ext/sybase_ct/config.m4 Thu Mar 13 12:27:28 2003 @@ -1,10 +1,14 @@ dnl -dnl $Id: config.m4,v 1.11 2002/03/12 16:36:30 sas Exp $ +dnl $Id: config.m4,v 1.12 2003/03/13 17:27:28 sniper Exp $ dnl PHP_ARG_WITH(sybase-ct, for Sybase-CT support, [ --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 AC_DEFINE(HAVE_SYBASE_CT,1,[ ])
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php