At 09:23 AM 10/17/2002, Jeff Trawick wrote: >Another little note: > >A user of my mod_deflate build encountered a problem loading >mod_deflate alongside another module loaded another library which also >had a symbol called crc32 and the wrong one was used. So to my apxs >command I add > > -Wc,-Dcrc32=deflate_crc32 > >(I should probably change that to zlib_crc32.) > >It would be smart to identify other potential conflicts, or add >support to zlib for reasonable namespace protection.
That's extremely simple... -Wc,-DZ_PREFIX All exports will be z_ prefixed. They ask that stock, 'standard' libz installed into /usr be compiled without it. It's probably something that we could discover from AC if we were clever. Bill
