summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2006-01-11 14:44:49 +0000
committerLuca Longinotti <chtekk@gentoo.org>2006-01-11 14:44:49 +0000
commita496bca342e7688f5d423ae16fdf67a268963152 (patch)
treef4491740e0785e0a2944520fc69014425fb94caa /dev-php5/pecl-memcache/files
parentPruned old version (diff)
downloadgentoo-2-a496bca342e7688f5d423ae16fdf67a268963152.tar.gz
gentoo-2-a496bca342e7688f5d423ae16fdf67a268963152.tar.bz2
gentoo-2-a496bca342e7688f5d423ae16fdf67a268963152.zip
Remove unused patch.
(Portage version: 2.0.54)
Diffstat (limited to 'dev-php5/pecl-memcache/files')
-rw-r--r--dev-php5/pecl-memcache/files/config-zlib-det-fix.patch103
1 files changed, 0 insertions, 103 deletions
diff --git a/dev-php5/pecl-memcache/files/config-zlib-det-fix.patch b/dev-php5/pecl-memcache/files/config-zlib-det-fix.patch
deleted file mode 100644
index 5ce9eff569b6..000000000000
--- a/dev-php5/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=<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=<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
-+
-+