mirror of https://github.com/getdnsapi/getdns.git
36 lines
1.6 KiB
Plaintext
36 lines
1.6 KiB
Plaintext
# #-- 400-static-analysis.pre--#
|
|
# source the master var file when it's there
|
|
if [ -f ../.tpkg.var.master ]
|
|
then
|
|
source ../.tpkg.var.master
|
|
else
|
|
(
|
|
cd ..
|
|
[ -f "${TPKG_SRCDIR}/setup-env.sh" ] \
|
|
&& sh "${TPKG_SRCDIR}/setup-env.sh"
|
|
) && source ../.tpkg.var.master
|
|
fi
|
|
# use .tpkg.var.test for in test variable passing
|
|
[ -f .tpkg.var.test ] && source .tpkg.var.test
|
|
|
|
echo "" > restore-srcdir-configure-settings
|
|
for f in `grep 'CONFIG_[FH][IE][LA][ED][SE]' "${SRCROOT}/configure.ac" | sed -e 's/^.*(\[//g' -e 's/\])//g'`
|
|
do
|
|
if [ -f "${SRCROOT}/$f" ]
|
|
then
|
|
mv "${SRCROOT}/${f}" "${SRCROOT}/${f}.build-static-analysis" && \
|
|
echo "$f" >> restore-srcdir-configure-settings
|
|
fi
|
|
done
|
|
rm -fr "${BUILDDIR}/build-static-analysis"
|
|
mkdir "${BUILDDIR}/build-static-analysis"
|
|
cd "${BUILDDIR}/build-static-analysis"
|
|
"${SRCROOT}/configure" $* --prefix "${BUILDDIR}/install" --enable-all-drafts --with-stubby --with-libevent --with-libev --with-libuv \
|
|
|| "${SRCROOT}/configure" $* --prefix "${BUILDDIR}/install" --enable-all-drafts --with-stubby --with-libevent --with-libev \
|
|
|| "${SRCROOT}/configure" $* --prefix "${BUILDDIR}/install" --enable-all-drafts --with-stubby --with-libevent --with-libuv \
|
|
|| "${SRCROOT}/configure" $* --prefix "${BUILDDIR}/install" --enable-all-drafts --with-stubby --with-libev --with-libuv \
|
|
|| "${SRCROOT}/configure" $* --prefix "${BUILDDIR}/install" --enable-all-drafts --with-stubby --with-libevent \
|
|
|| "${SRCROOT}/configure" $* --prefix "${BUILDDIR}/install" --enable-all-drafts --with-stubby --with-libev \
|
|
|| "${SRCROOT}/configure" $* --prefix "${BUILDDIR}/install" --enable-all-drafts --with-stubby --with-libuv
|
|
|