Overview
Comment: | Fixes for zlib on other platforms |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | b62450459c417c580c2b3eb490d9692d738c55e0 |
User & Date: | rkeene on 2014-04-28 20:36:29 |
Other Links: | manifest | tags |
Context
2014-04-28
| ||
20:36 | Added TclTCC check-in: c8641be07e user: rkeene tags: trunk | |
20:36 | Fixes for zlib on other platforms check-in: b62450459c user: rkeene tags: trunk | |
2014-04-27
| ||
04:13 | Work towards upgrading zlib -- untested on most platforms check-in: 1a5bbc4282 user: rkeene tags: trunk | |
Changes
Modified zlib/build.sh from [07595632d1] to [7da32bb1e0].
54 54 if [ "${KITTARGET}" = "kitdll" ]; then 55 55 CFLAGS="${CFLAGS} -fPIC" 56 56 export CFLAGS 57 57 fi 58 58 59 59 # We don't pass CONFIGUREEXTRA here, since this isn't a GNU autoconf 60 60 # script and will puke 61 - echo "Running: ./configure --prefix=\"${INSTDIR}\" --libdir=\"${INSTDIR}/lib\"" 62 - ./configure --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" 61 + echo "Running: ./configure --prefix=\"${INSTDIR}\" --libdir=\"${INSTDIR}/lib\" --static" 62 + ./configure --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --static 63 63 64 64 echo "Running: ${MAKE:-make}" 65 65 ${MAKE:-make} || exit 1 66 66 67 67 echo "Running: ${MAKE:-make} install" 68 68 ${MAKE:-make} install 69 69 70 70 # We don't really care too much about failure in zlib 71 71 exit 0 72 72 ) || exit 1 73 73 74 74 exit 0