aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2009-03-27 02:04:16 +0000
committerCarlo Landmeter <clandmeter@gmail.com>2009-03-27 02:04:16 +0000
commite45122f539113858bf3d0e3641586b45f9c8907b (patch)
tree57f77306012c8d063d5f320b175eb10f8b154679 /testing
parentc5ba09ce15edd772b2da9aba4885ed0aa98b6140 (diff)
downloadaports-e45122f539113858bf3d0e3641586b45f9c8907b.tar.bz2
aports-e45122f539113858bf3d0e3641586b45f9c8907b.tar.xz
extra/php-apc: disabled mmap cause uclibc does not (yet) support shm_open in mmap see:
http://www.mail-archive.com/uclibc@uclibc.org/msg03353.html also disabled extra option in apc.ini to let apc select defaults for now.
Diffstat (limited to 'testing')
-rw-r--r--testing/php-apc/APKBUILD32
-rw-r--r--testing/php-apc/apc.ini11
2 files changed, 0 insertions, 43 deletions
diff --git a/testing/php-apc/APKBUILD b/testing/php-apc/APKBUILD
deleted file mode 100644
index 0f4b4bbf96..0000000000
--- a/testing/php-apc/APKBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# Contributor: Carlo Landmeter <clandmeter@gmail.com>
-# Maintainer: Carlo Landmeter <clandmeter@gmail.com>
-pkgname=php-apc
-pkgver=3.1.2
-pkgrel=0
-pkgdesc="Alternative PHP Cache"
-url="http://pecl.php.net/package/APC"
-license="PHP"
-depends="php"
-makedepends="php-dev autoconf pcre-dev"
-install=
-subpackages=""
-source="http://pecl.php.net/get/APC-3.1.2.tgz
-apc.ini"
-
-build() {
- cd "$srcdir/APC-${pkgver}"
-
- phpize || return 1
- ./configure --prefix=/usr \
- --enable-apc \
- --enable-apc-mmap \
- --with-apxs \
- --with-php-config=/usr/bin/php-config
- make || return 1
- make INSTALL_ROOT=$pkgdir install || return 1
- install -D -m644 "$srcdir"/apc.ini "$pkgdir"/etc/php/conf.d/apc.ini
-
-}
-
-md5sums="0a18cf164b3e044e27edd4c1d8c3145c APC-3.1.2.tgz
-45224019b659aa60ac540eef08ae8413 apc.ini"
diff --git a/testing/php-apc/apc.ini b/testing/php-apc/apc.ini
deleted file mode 100644
index 4dabec2177..0000000000
--- a/testing/php-apc/apc.ini
+++ /dev/null
@@ -1,11 +0,0 @@
-;PHP suggest APC settings
-extension=apc.so
-apc.enabled=1
-apc.shm_segments=1
-apc.shm_size=128
-apc.ttl=7200
-apc.user_ttl=7200
-apc.num_files_hint=1024
-apc.mmap_file_mask=/tmp/apc.XXXXXX
-apc.enable_cli=1
-