From 30f49481a7a92177119081e6a6b98864cba880bc Mon Sep 17 00:00:00 2001 From: Luca Longinotti Date: Wed, 11 Jan 2006 11:44:34 +0000 Subject: Remove unused patch. (Portage version: 2.0.54) --- .../pecl-memcache/files/config-zlib-det-fix.patch | 103 --------------------- 1 file changed, 103 deletions(-) delete mode 100644 dev-php4/pecl-memcache/files/config-zlib-det-fix.patch (limited to 'dev-php4/pecl-memcache/files') diff --git a/dev-php4/pecl-memcache/files/config-zlib-det-fix.patch b/dev-php4/pecl-memcache/files/config-zlib-det-fix.patch deleted file mode 100644 index 5ce9eff569b6..000000000000 --- a/dev-php4/pecl-memcache/files/config-zlib-det-fix.patch +++ /dev/null @@ -1,103 +0,0 @@ ---- config.m4 2005-11-27 12:05:10.000000000 +0100 -+++ config.m4 2006-01-06 18:30:46.000000000 +0100 -@@ -1,49 +1,51 @@ --dnl --dnl $Id: config.m4,v 1.4 2005/11/26 17:53:18 tony2001 Exp $ --dnl -- --PHP_ARG_ENABLE(memcache, whether to enable memcache support, --[ --enable-memcache Enable memcache support]) -- --if test -z "$PHP_ZLIB_DIR"; then --PHP_ARG_WITH(zlib-dir, for the location of libz, --[ --with-zlib-dir[=DIR] memcache: Set the path to libz install prefix.], no, no) --fi -- --if test "$PHP_MEMCACHE" != "no"; then -- -- if test "$PHP_ZLIB_DIR" != "no"; then -- if test -f $PHP_ZLIB_DIR/include/zlib/zlib.h; then -- PHP_ZLIB_DIR=$PHP_ZLIB_DIR -- PHP_ZLIB_INCDIR=$PHP_ZLIB_DIR/include/zlib -- elif test -f $PHP_ZLIB_DIR/include/zlib.h; then -- PHP_ZLIB_DIR=$PHP_ZLIB_DIR -- PHP_ZLIB_INCDIR=$PHP_ZLIB_DIR/include -- fi -- else -- for i in /usr/local /usr; do -- if test -f $i/include/zlib/zlib.h; then -- PHP_ZLIB_DIR=$i -- PHP_ZLIB_INCDIR=$i/include/zlib -- elif test -f $i/include/zlib.h; then -- PHP_ZLIB_DIR=$i -- PHP_ZLIB_INCDIR=$i/include -- fi -- done -- fi -- -- dnl # zlib -- AC_MSG_CHECKING([for the location of zlib]) -- if test "$PHP_ZLIB_DIR" = "no"; then -- AC_MSG_ERROR([memcache support requires ZLIB. Use --with-zlib-dir=]) -- else -- AC_MSG_RESULT([$PHP_ZLIB_DIR]) -- PHP_ADD_LIBRARY_WITH_PATH(z, $PHP_ZLIB_DIR/lib, MEMCACHE_SHARED_LIBADD) -- PHP_ADD_INCLUDE($PHP_ZLIB_INCDIR) -- fi -- -- AC_DEFINE(HAVE_MEMCACHE,1,[Whether you want memcache support]) -- PHP_NEW_EXTENSION(memcache, memcache.c, $ext_shared) --fi -- -- -+dnl -+dnl $Id: config.m4,v 1.5 2005/12/29 15:27:57 tony2001 Exp $ -+dnl -+ -+PHP_ARG_ENABLE(memcache, whether to enable memcache support, -+[ --enable-memcache Enable memcache support]) -+ -+if test -z "$PHP_ZLIB_DIR"; then -+PHP_ARG_WITH(zlib-dir, for the location of libz, -+[ --with-zlib-dir[=DIR] memcache: Set the path to libz install prefix.], no, no) -+fi -+ -+if test "$PHP_MEMCACHE" != "no"; then -+ -+ if test "$PHP_ZLIB_DIR" != "no" && test "$PHP_ZLIB_DIR" != "yes"; then -+ if test -f "$PHP_ZLIB_DIR/include/zlib/zlib.h"; then -+ PHP_ZLIB_DIR="$PHP_ZLIB_DIR" -+ PHP_ZLIB_INCDIR="$PHP_ZLIB_DIR/include/zlib" -+ elif test -f "$PHP_ZLIB_DIR/include/zlib.h"; then -+ PHP_ZLIB_DIR="$PHP_ZLIB_DIR" -+ PHP_ZLIB_INCDIR="$PHP_ZLIB_DIR/include" -+ else -+ AC_MSG_ERROR([Can't find zlib headers under "$PHP_ZLIB_DIR"]) -+ fi -+ else -+ for i in /usr/local /usr; do -+ if test -f "$i/include/zlib/zlib.h"; then -+ PHP_ZLIB_DIR="$i" -+ PHP_ZLIB_INCDIR="$i/include/zlib" -+ elif test -f "$i/include/zlib.h"; then -+ PHP_ZLIB_DIR="$i" -+ PHP_ZLIB_INCDIR="$i/include" -+ fi -+ done -+ fi -+ -+ dnl # zlib -+ AC_MSG_CHECKING([for the location of zlib]) -+ if test "$PHP_ZLIB_DIR" = "no"; then -+ AC_MSG_ERROR([memcache support requires ZLIB. Use --with-zlib-dir= to specify prefix where ZLIB include and library are located]) -+ else -+ AC_MSG_RESULT([$PHP_ZLIB_DIR]) -+ PHP_ADD_LIBRARY_WITH_PATH(z, $PHP_ZLIB_DIR/lib, MEMCACHE_SHARED_LIBADD) -+ PHP_ADD_INCLUDE($PHP_ZLIB_INCDIR) -+ fi -+ -+ AC_DEFINE(HAVE_MEMCACHE,1,[Whether you want memcache support]) -+ PHP_NEW_EXTENSION(memcache, memcache.c, $ext_shared) -+fi -+ -+ -- cgit v1.2.3-65-gdbad