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"
|
2011-08-06 02:11:06 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
echo "Checking that we are not linking to libstdc++"
|
|
|
|
if ldd $so | grep 'libstdc[+][+]'; then
|
|
|
|
echo "Ouch, linked to libstdc++"
|
|
|
|
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"
|
2011-08-06 02:11:06 +02:00
|
|
|
exit 77
|
2009-11-03 20:28:32 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
exit $stat
|