harfbuzz/src/check-libstdc++.sh

35 lines
622 B
Bash
Raw Normal View History

2009-11-03 20:28:32 +01:00
#!/bin/sh
LC_ALL=C
export LC_ALL
2011-05-27 21:58:54 +02:00
test -z "$srcdir" && srcdir=.
stat=0
2009-11-03 20:28:32 +01:00
if which ldd 2>/dev/null >/dev/null; then
:
else
echo "check-libstdc++.sh: 'ldd' not found; skipping test"
exit 77
2009-11-03 20:28:32 +01:00
fi
2012-01-27 08:09:40 +01:00
tested=false
for suffix in so dylib; do
so=.libs/libharfbuzz.$suffix
2014-08-14 19:33:37 +02:00
if ! test -f "$so"; then continue; fi
2015-04-24 03:56:24 +02:00
echo "Checking that we are not linking to libstdc++ or libc++"
if ldd $so | grep 'libstdc[+][+]\|libc[+][+]'; then
echo "Ouch, linked to libstdc++ or libc++"
2014-08-14 19:33:37 +02:00
stat=1
2009-11-03 20:28:32 +01:00
fi
2014-08-14 19:33:37 +02:00
tested=true
2012-01-27 08:09:40 +01:00
done
if ! $tested; then
2012-08-29 01:08:36 +02:00
echo "check-libstdc++.sh: libharfbuzz shared library not found; skipping test"
exit 77
2009-11-03 20:28:32 +01:00
fi
exit $stat