blob: 49743dfe5b0723fd553d2a4c61160e7bff30b1e9 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/bin/sh
QMKSPEC=$1
XPLATFORM=`basename $1`
VERBOSE=$2
SRCDIR=$3
OUTDIR=$4
# debuggery
[ "$VERBOSE" = "yes" ] && echo "Detecting broken X11 headers... ($*)"
# Detect broken X11 headers when using GCC 2.95 or later
# Xsun on Solaris 2.5.1:
# Patches are available for Solaris 2.6, 7, and 8 but
# not for Solaris 2.5.1.
# HP-UX:
# Patches are available for HP-UX 10.20, 11.00, and 11.11.
# AIX 4.3.3 and AIX 5.1:
# Headers are clearly broken on all AIX versions, and we
# don't know of any patches. The strange thing is that we
# did not get any reports about this issue until very
# recently, long after gcc 3.0.x was released. It seems to
# work for us with gcc 2.95.2.
NOTYPE=no
if [ $XPLATFORM = "solaris-g++" -o $XPLATFORM = "hpux-g++" -o $XPLATFORM = "aix-g++" -o $XPLATFORM = "aix-g++-64" ]; then
NOTYPE=yes
test -d $OUTDIR/config.tests/x11/notype || mkdir -p $OUTDIR/config.tests/x11/notype
$OUTDIR/bin/tqmake -nocache -spec "$QMKSPEC" $SRCDIR/config.tests/x11/notype/notypetest.pro -o $OUTDIR/config.tests/x11/notype/Makefile >/dev/null 2>&1
cd $OUTDIR/config.tests/x11/notype
if [ "$VERBOSE" = "yes" ]; then
make
else
make >/dev/null 2>&1
fi
[ -x notypetest ] && NOTYPE=no
fi
# done
if [ "$NOTYPE" = "yes" ]; then
[ "$VERBOSE" = "yes" ] && echo "Broken X11 headers detected."
exit 0
else
[ "$VERBOSE" = "yes" ] && echo "X11 headers look good."
exit 1
fi
|