blob: 5df87d6960cd50b1ed422eff29406da74f71ee0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/sh
IPV6=0
QMKSPEC=$1
VERBOSE=$2
SRCDIR=$3
OUTDIR=$4
# debuggery
[ "$VERBOSE" = "yes" ] && echo "Testing IPv6 support..."
# build a test program
test -d $OUTDIR/config.tests/unix/ipv6 || mkdir -p $OUTDIR/config.tests/unix/ipv6
$OUTDIR/bin/qmake -nocache -spec "$QMKSPEC" $SRCDIR/config.tests/unix/ipv6/ipv6test.pro -o $OUTDIR/config.tests/unix/ipv6/Makefile >/dev/null 2>&1
cd $OUTDIR/config.tests/unix/ipv6
if [ "$VERBOSE" = "yes" ]; then
(make && ./ipv6test)
else
(make && ./ipv6test) >/dev/null 2>&1
fi
IPV6=$?
# done
if [ "$IPV6" -ne 0 ]; then
[ "$VERBOSE" = "yes" ] && echo "IPv6 support disabled."
exit 0
else
[ "$VERBOSE" = "yes" ] && echo "IPv6 support enabled."
exit 1
fi
|