diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-05-22 18:26:28 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-05-22 18:26:28 +0000 |
commit | 18ea1afefe75baf9e9d5a81ea4e2820433993faa (patch) | |
tree | 1edc7b7cce0659feb4e86a0fdd1cd78d96db73ef /lang/php53/files/patch-configure | |
parent | Chase the distfile; update MASTER_SITES. (diff) |
Add completely new port system for PHP4 (4.3.2RC4). Updated mod_php4
to 4.3.2RC4 release and added php4-cli and php4 ports, for apache
module, command line interface, and both, respectively. Too many
changes (improvements, bug fixes and new features) to be listed here,
PR: ports/51945
Submitted by: Alex Dupre <sysadmin@alexdupre.com>
Diffstat (limited to 'lang/php53/files/patch-configure')
-rw-r--r-- | lang/php53/files/patch-configure | 136 |
1 files changed, 136 insertions, 0 deletions
diff --git a/lang/php53/files/patch-configure b/lang/php53/files/patch-configure new file mode 100644 index 000000000000..eda6b0e7209a --- /dev/null +++ b/lang/php53/files/patch-configure @@ -0,0 +1,136 @@ +--- configure.orig Thu May 1 23:30:59 2003 ++++ configure Fri May 2 15:59:58 2003 +@@ -70925,29 +70925,6 @@ + else + + +- case cs in +- c|c_r|pthread*) ;; +- *) +- if test "$ext_shared" = "yes"; then +- SYBASE_CT_SHARED_LIBADD="-lcs $SYBASE_CT_SHARED_LIBADD" +- else +- +- +- case cs in +- c|c_r|pthread*) ;; +- *) +- LIBS="-lcs $LIBS" +- ;; +- esac +- +- +- fi +- ;; +- esac +- +- +- +- + case ct in + c|c_r|pthread*) ;; + *) +@@ -70971,52 +70948,7 @@ + + + +- case comn in +- c|c_r|pthread*) ;; +- *) +- if test "$ext_shared" = "yes"; then +- SYBASE_CT_SHARED_LIBADD="-lcomn $SYBASE_CT_SHARED_LIBADD" +- else +- +- +- case comn in +- c|c_r|pthread*) ;; +- *) +- LIBS="-lcomn $LIBS" +- ;; +- esac +- +- +- fi +- ;; +- esac +- +- +- +- +- case intl in +- c|c_r|pthread*) ;; +- *) +- if test "$ext_shared" = "yes"; then +- SYBASE_CT_SHARED_LIBADD="-lintl $SYBASE_CT_SHARED_LIBADD" +- else +- +- +- case intl in +- c|c_r|pthread*) ;; +- *) +- LIBS="-lintl $LIBS" +- ;; +- esac +- +- +- fi +- ;; +- esac +- +- +- +- SYBASE_CT_LIBS="-L$SYBASE_CT_LIBDIR -lcs -lct -lcomn -lintl" ++ SYBASE_CT_LIBS="-L$SYBASE_CT_LIBDIR -lct" + + + save_old_LDFLAGS=$LDFLAGS +@@ -71086,37 +71018,6 @@ + + + +-else +- echo "$ac_t""no" 1>&6 +- +- LDFLAGS=$save_old_LDFLAGS +- unset ac_cv_func_tcl +- +- +- +- case sybtcl in +- c|c_r|pthread*) ;; +- *) +- if test "$ext_shared" = "yes"; then +- SYBASE_CT_SHARED_LIBADD="-lsybtcl $SYBASE_CT_SHARED_LIBADD" +- else +- +- +- case sybtcl in +- c|c_r|pthread*) ;; +- *) +- LIBS="-lsybtcl $LIBS" +- ;; +- esac +- +- +- fi +- ;; +- esac +- +- +- +- + fi + + +@@ -84050,10 +83951,7 @@ + CXXFLAGS="$CXXFLAGS $standard_libtool_flag" + + all_targets='$(OVERALL_TARGET) $(PHP_MODULES) $(PHP_CLI_TARGET)' +-install_targets="install-sapi install-modules $install_pear install-build install-headers install-programs" +-if test "$PHP_SAPI" != "cgi"; then +- install_targets="$PHP_INSTALL_CLI_TARGET $install_targets" +-fi ++install_targets="install-sapi $PHP_INSTALL_CLI_TARGET install-modules $install_pear install-build install-headers install-programs" + + + PHP_VAR_SUBST="$PHP_VAR_SUBST all_targets" |