[Pkg-apache-commits] r1308 - in /trunk/apr: changelog rules

sf at alioth.debian.org sf at alioth.debian.org
Mon May 9 21:59:43 UTC 2011


Author: sf
Date: Mon May  9 21:59:43 2011
New Revision: 1308

URL: http://svn.debian.org/wsvn/pkg-apache/?sc=1&rev=1308
Log:
Enable experimental allocator using mmap instead of malloc. This makes
Apache HTTPD's MaxMemFree directive actually work and hopefully reduces
memory fragmentation.

Modified:
    trunk/apr/changelog
    trunk/apr/rules

Modified: trunk/apr/changelog
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apr/changelog?rev=1308&op=diff
==============================================================================
--- trunk/apr/changelog (original)
+++ trunk/apr/changelog Mon May  9 21:59:43 2011
@@ -1,6 +1,9 @@
 apr (1.4.4-1) UNRELEASED; urgency=low
 
   * New upstream release.
+  * Enable experimental allocator using mmap instead of malloc. This makes
+    Apache HTTPD's MaxMemFree directive actually work and hopefully reduces
+    memory fragmentation.
   * Bump standards-version (no changes).
 
  -- Stefan Fritsch <sf at debian.org>  Mon, 09 May 2011 23:10:39 +0200

Modified: trunk/apr/rules
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apr/rules?rev=1308&op=diff
==============================================================================
--- trunk/apr/rules (original)
+++ trunk/apr/rules Mon May  9 21:59:43 2011
@@ -80,7 +80,7 @@
 	# we need to force the use of bash here. Otherwise, if apr is built with
 	# /bin/sh -> /bin/bash, the resulting libtool will not work on systems
 	# where /bin/sh -> /bin/dash
-	cd $(BUILDDIR) && CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" $(CONFFLAGS) CONFIG_SHELL=/bin/bash /bin/bash ../configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --enable-layout=Debian --includedir=\$${prefix}/usr/include/apr-1.0 --with-installbuilddir=\$${prefix}/usr/share/apr-1.0/build  --enable-nonportable-atomics
+	cd $(BUILDDIR) && CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" $(CONFFLAGS) CONFIG_SHELL=/bin/bash /bin/bash ../configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --enable-layout=Debian --includedir=\$${prefix}/usr/include/apr-1.0 --with-installbuilddir=\$${prefix}/usr/share/apr-1.0/build  --enable-nonportable-atomics --enable-allocator-uses-mmap
 	# Determine whether upstream's configure gives the same definition of apr_ino_t as we had until 1.2.11-1
 	rm -f debian/ino_t_test
 	gcc -I$(CURDIR)/include -I$(BUILDDIR)/include `$(BUILDDIR)/apr-1-config --cppflags` -o debian/ino_t_test debian/ino_t_test.c




More information about the Pkg-apache-commits mailing list