Overview
| Comment: | Updated to compile zlib as PIC when building KitDLL | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 9bd201f713563bc0da759f4b364f7fa1 | 
| User & Date: | rkeene on 2010-10-02 09:11:17 | 
| Other Links: | manifest | tags | 
Context
| 2010-10-02 | ||
| 09:30 | Updated to statically link to libz if possible check-in: 13e2385169 user: rkeene tags: trunk | |
| 09:11 | Updated to compile zlib as PIC when building KitDLL check-in: 9bd201f713 user: rkeene tags: trunk | |
| 08:58 | Updated to set runtime linker path on drivers to "." rather than pwd Updated setting runtime linker path to use more compatible optioncheck-in: c77d16728b user: rkeene tags: trunk | |
Changes
Modified zlib/build.sh from [2bc46025a6] to [8a0aea4553].
| ︙ | ︙ | |||
| 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 
		cp -rp ../buildsrc/* './'
	fi
	cd "${BUILDDIR}" || exit 1
	# ZLIB Expects AR to contain options
	AR="${AR:-ar} rcu"
	export AR
	# We don't pass CONFIGUREEXTRA here, since this isn't a GNU autoconf
	# script and will puke
	echo "Running: ./configure --prefix=\"${INSTDIR}\""
	./configure --prefix="${INSTDIR}"
	echo "Running: ${MAKE:-make} AR=\"${AR}\""
 | > > > > > > | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 
		cp -rp ../buildsrc/* './'
	fi
	cd "${BUILDDIR}" || exit 1
	# ZLIB Expects AR to contain options
	AR="${AR:-ar} rcu"
	export AR
	# If we are building for KitDLL, compile with '-fPIC'
	if [ "${KITTARGET}" = "kitdll" ]; then
		CFLAGS="${CFLAGS} -fPIC"
		export CFLAGS
	fi
	# We don't pass CONFIGUREEXTRA here, since this isn't a GNU autoconf
	# script and will puke
	echo "Running: ./configure --prefix=\"${INSTDIR}\""
	./configure --prefix="${INSTDIR}"
	echo "Running: ${MAKE:-make} AR=\"${AR}\""
 | 
| ︙ | ︙ |