I finally got mod_gzip installed (

), and want to disable PHP's zlib compression. I tried changing 'zlib.output_compression' from 'On' to 'Off' in php.ini (and restarted the web server), but that didn't seem to have any effect.
phpinfo() still shows 'ZLib Support enabled', and .php pages still seem to get zlib-compressed. In the Apache log, for .php pages, mod_gzip reports 'mod_gzip: SEND_AS_IS:HAS_CE In:0 Out:0:0pct.'. The 'HAS_CE' means that the page already has content-encoding, and the response header includes 'Content-Encoding: gzip'.
Since I built PHP with the '--with-zlib' option, does that mean that I need to re-make PHP to change this?