sniper Wed Mar 16 01:37:03 2005 EDT Modified files: (Branch: PHP_4_3) /php-src configure.in /php-src/scripts php-config.in Log: MFH: - Remove these relics from era when TSRM was optional. http://cvs.php.net/diff.php/php-src/configure.in?r1=1.396.2.155&r2=1.396.2.156&ty=u Index: php-src/configure.in diff -u php-src/configure.in:1.396.2.155 php-src/configure.in:1.396.2.156 --- php-src/configure.in:1.396.2.155 Mon Mar 14 16:11:45 2005 +++ php-src/configure.in Wed Mar 16 01:37:03 2005 @@ -1,4 +1,4 @@ -dnl ## $Id: configure.in,v 1.396.2.155 2005/03/14 21:11:45 sniper Exp $ -*- sh -*- +dnl ## $Id: configure.in,v 1.396.2.156 2005/03/16 06:37:03 sniper Exp $ -*- sh -*- dnl ## Process this file with autoconf to produce a configure script. divert(1) @@ -935,10 +935,6 @@ LIBZEND_DLSYM_CHECK LIBZEND_OTHER_CHECKS -TSRM_LIB='TSRM/libtsrm.la' -TSRM_DIR=TSRM -CPPFLAGS="$CPPFLAGS -I\$(top_builddir)/TSRM" - if test "$ZEND_EXPERIMENTAL_ZTS" = "yes"; then AC_DEFINE(ZTS,1,[ ]) PHP_THREAD_SAFETY=yes @@ -1147,8 +1143,6 @@ PHP_SUBST(RE2C) PHP_SUBST(SHELL) PHP_SUBST(SHARED_LIBTOOL) -PHP_SUBST(TSRM_DIR) -PHP_SUBST(TSRM_LIB) PHP_SUBST(WARNING_LEVEL) PHP_SUBST(PHP_FRAMEWORKS) PHP_SUBST(PHP_FRAMEWORKPATH) http://cvs.php.net/diff.php/php-src/scripts/php-config.in?r1=1.1.2.1&r2=1.1.2.2&ty=u Index: php-src/scripts/php-config.in diff -u php-src/scripts/php-config.in:1.1.2.1 php-src/scripts/php-config.in:1.1.2.2 --- php-src/scripts/php-config.in:1.1.2.1 Tue Jan 28 10:02:08 2003 +++ php-src/scripts/php-config.in Wed Mar 16 01:37:03 2005 @@ -3,12 +3,9 @@ prefix="@prefix@" version="@PHP_VERSION@" includedir="@includedir@/php" -includes="-I$includedir -I$includedir/main -I$includedir/Zend" +includes="-I$includedir -I$includedir/main -I$includedir/TSRM -I$includedir/Zend" ldflags="@PHP_LDFLAGS@" libs="@EXTRA_LIBS@" -if test '@TSRM_DIR@' != ''; then - includes="$includes -I$includedir/TSRM" -fi extension_dir='@EXTENSION_DIR@' case "$1" in
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php