From 83b36a6d03113e809c558d6ceef3e3cf54b45ee0 Mon Sep 17 00:00:00 2001 From: dbs Date: Wed, 3 Dec 2008 04:49:14 +0000 Subject: [PATCH] Prevent mod_deflate from mysteriously causing problems in interfaces like Conify git-svn-id: svn://svn.open-ils.org/ILS/trunk@11385 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/extras/Makefile.install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install index f805934e40..e4c2569870 100644 --- a/Open-ILS/src/extras/Makefile.install +++ b/Open-ILS/src/extras/Makefile.install @@ -197,6 +197,9 @@ DEB_APACHE_MODS = \ proxy_http\ rewrite +DEB_APACHE_DISMODS = \ + deflate + # Chronically unpackaged CPAN modules CPAN_MODULES = \ Business::CreditCard::Object \ @@ -290,6 +293,8 @@ clean: debian_sys_config: # link the apache modules in for m in $(DEB_APACHE_MODS); do a2enmod $$m; done; + # keep the bad apache modules away + for m in $(DEB_APACHE_DISMODS); do a2dismod $$m; done; # Install the debian-specific dependencies install_debs: -- 2.11.0