Overview
| Comment: | Updated to use default-symver (unless requested not to) | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | packages | 
| Files: | files | file ages | folders | 
| SHA1: | 9650feac014e18674b64d90c2b544939 | 
| User & Date: | rkeene on 2014-11-12 09:53:21 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2014-11-12 | ||
| 09:53 | Added Tcl package check-in: 9deb3d4e79 user: rkeene tags: packages | |
| 09:53 | Updated to use default-symver (unless requested not to) check-in: 9650feac01 user: rkeene tags: packages | |
| 09:30 | Added coreutils package check-in: cf57024dfa user: rkeene tags: packages | |
Changes
Modified build from [6b42e787ea] to [5242f6143a].
| ︙ | ︙ | |||
| 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | 
	if ! echo " ${require[*]} " | grep ' linux-headers[/@: ]' >/dev/null; then
		CC="${CC} -isystem ${linuxheadersdir}/include"
	fi
	BUILD_CC="${CC}"
	HOST_CC="${CC}"
	LDFLAGS="${LDFLAGS} -L${glibcdir}/lib -Wl,--rpath,${glibcdir}/lib -Wl,--dynamic-linker,${dynlinker}"
	PKG_CONFIG_LIBDIR="${glibcdir}/lib/pkgconfig"
	export CC BUILD_CC HOST_CC LDFLAGS PKG_CONFIG_LIBDIR
}
function configure() {
	configure_gcc
	./configure --prefix="${prefix}" --sysconfdir="${prefix}/etc" --libdir="${prefix}/lib" --localstatedir=/var "${configure_extra[@]}"
}
 | > > > > > > | 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | 
	if ! echo " ${require[*]} " | grep ' linux-headers[/@: ]' >/dev/null; then
		CC="${CC} -isystem ${linuxheadersdir}/include"
	fi
	BUILD_CC="${CC}"
	HOST_CC="${CC}"
	LDFLAGS="${LDFLAGS} -L${glibcdir}/lib -Wl,--rpath,${glibcdir}/lib -Wl,--dynamic-linker,${dynlinker}"
	if [ -z "${appfs_build_no_default_symver}" ]; then
		LDFLAGS="${LDFLAGS} -Wl,--default-symver"
	fi
	PKG_CONFIG_LIBDIR="${glibcdir}/lib/pkgconfig"
	export CC BUILD_CC HOST_CC LDFLAGS PKG_CONFIG_LIBDIR
}
function configure() {
	configure_gcc
	./configure --prefix="${prefix}" --sysconfdir="${prefix}/etc" --libdir="${prefix}/lib" --localstatedir=/var "${configure_extra[@]}"
}
 | 
| ︙ | ︙ |