Overview
Comment: | Updated to work correctly with cross-compiling |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | dc8653dae79a229b21028c75a5fa877d18c42574 |
User & Date: | rkeene on 2014-12-19 02:33:00 |
Other Links: | manifest | tags |
Context
2015-01-20
| ||
18:02 | Updated to disable SSLv2 in the TLS build script check-in: d5793ac87e user: rkeene tags: trunk | |
2014-12-19
| ||
02:33 | Updated to work correctly with cross-compiling check-in: dc8653dae7 user: rkeene tags: trunk | |
02:18 | Added recently added extensions to the web interface check-in: 7be354cf06 user: rkeene tags: trunk | |
Changes
Modified yajltcl/build.sh from [ba99dc5121] to [4f55cc724b].
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
cp -rp ../buildsrc/* './'
fi
# Build YAJL
(
cd "${YAJLBUILDDIR}" || exit 1
./configure -p "$(pwd)/INST" || exit 1
make || exit 1
make install || exit 1
rm -f INST/lib/*.so*
mv INST/lib/libyajl_s.a INST/lib/libyajl.a || exit 1
) || exit 1
# Include YAJL's build in our pkg-config path
PKG_CONFIG_PATH="${YAJLBUILDDIR}/INST/share/pkgconfig"
|
< |
60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
cp -rp ../buildsrc/* './' fi # Build YAJL ( cd "${YAJLBUILDDIR}" || exit 1 ./configure -p "$(pwd)/INST" || exit 1 make install || exit 1 rm -f INST/lib/*.so* mv INST/lib/libyajl_s.a INST/lib/libyajl.a || exit 1 ) || exit 1 # Include YAJL's build in our pkg-config path PKG_CONFIG_PATH="${YAJLBUILDDIR}/INST/share/pkgconfig" |