1
0
mirror of https://github.com/madler/zlib synced 2025-03-28 21:13:15 +00:00

Merge d24f07425e9af3968bdd26ee836b0bbce337726a into 5a82f71ed1dfc0bec044d9702463dbdf84ea3b71

This commit is contained in:
Victor Kirhenshtein 2025-03-10 09:01:02 +01:00 committed by GitHub
commit 8b56c28487
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

7
configure vendored
View File

@ -399,7 +399,12 @@ else
AIX*) # Courtesy of dbakker@arrayasolutions.com
SFLAGS=${CFLAGS-"-O -qmaxmem=8192"}
CFLAGS=${CFLAGS-"-O -qmaxmem=8192"}
LDSHARED=${LDSHARED-"xlc -G"} ;;
LDSHARED=${LDSHARED-"xlc -G"}
if test $build64 -eq 1; then
CFLAGS="${CFLAGS} -q64"
SFLAGS="${SFLAGS} -q64"
ARFLAGS="-X64 ${ARFLAGS}"
fi ;;
# send working options for other systems to zlib@gzip.org
*) SFLAGS=${CFLAGS-"-O"}
CFLAGS=${CFLAGS-"-O"}