Overview
| Comment: | More work towards making a build script to build working software | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | packages | 
| Files: | files | file ages | folders | 
| SHA1: | a6c367258243b50193c2e26df2ba40b9 | 
| User & Date: | rkeene on 2014-11-05 19:41:15 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2014-11-05 | ||
| 20:44 | Moved extract and download to functions check-in: d6d2c4eb25 user: rkeene tags: packages | |
| 19:41 | More work towards making a build script to build working software check-in: a6c3672582 user: rkeene tags: packages | |
| 2014-11-04 | ||
| 04:23 | Added support for prerequisities check-in: 76afe82d98 user: rkeene tags: packages | |
Changes
Modified build from [ab96518e6b] to [093497ea45].
| ︙ | ︙ | |||
| 53 54 55 56 57 58 59 | 
			if [ -d "${pkgdir}" ]; then
				pkgfound='1'
			fi
			CFLAGS="${CFLAGS} -I${pkgdir}/include"
			CPPFLAGS="${CPPFLAGS} -I${pkgdir}/include"
 | | > | | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | 
			if [ -d "${pkgdir}" ]; then
				pkgfound='1'
			fi
			CFLAGS="${CFLAGS} -I${pkgdir}/include"
			CPPFLAGS="${CPPFLAGS} -I${pkgdir}/include"
			LDFLAGS="${LDFLAGS} -L${pkgdir}/lib -Wl,-rpath,${pkgdir}/lib"
			PATH="${PATH}:${pkgdir}/bin"
			export CFLAGS CPPFLAGS LDFLAGS PATH
			if [ -d "${pkgconfigdir}" ]; then
				PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:${pkgconfigdir}"
				export PKG_CONFIG_PATH
			fi
		done
 | 
| ︙ | ︙ |