blob: f302956725b1cb283d56a0806ac3a232417181a9 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
case "${host}" in
rs6000-ibm-aix3.1 | rs6000-ibm-aix)
frag=mh-aix
files=${xsrcdir}alloca-botch.h ;;
*-ibm-aix*) files=${xsrcdir}alloca-botch.h ;;
arm-*-riscix*) frag=mh-riscix ;;
m68k-apollo-bsd*) frag=mh-a68bsd ;;
m68k-apollo-sysv*) frag=mh-apollo68 ;;
i[3456]86-ncr-sysv4*) frag=mh-ncr3000 ;;
*-*-cxux7*) frag=mh-cxux7 ;;
*-*-cygwin32) frag=mh-cygwin32 ;;
*-*-dgux*) frag=mh-sysv ;;
*-*-freebsd2.1.*) frag=mh-fbsd21 ;;
*-*-freebsd2.2.*) frag=mh-fbsd21 ;;
hppa*-hp-bsd*) frag=mh-hpbsd ;;
*-*-hpux*) frag=mh-hpux ;;
*-*-hiux*) frag=mh-hpux ;;
*-*-irix4*) frag=mh-irix4 ;;
*-*-irix*) frag=mh-sysv ;;
*-*-m88kbcs*) frag=mh-sysv ;;
*-*-solaris2*) frag=mh-sysv4 ;;
*-*-sysv4*) frag=mh-sysv4 ;;
*-*-sysv*) frag=mh-sysv ;;
*-*-go32) frag=mh-go32 ;;
i[345]86-*-windows*) frag=mh-windows ;;
*-*-vxworks5* | *-*-vxworks)
# VxWorks 5 needs special action, because the usual
# autoconfiguration scheme does not work.
frag=mt-vxworks5
;;
i[3456]86-*-mingw32*)
# Mingw32 does not require strerror.o from REQUIRED_OFILES.
# Worse: it will not compile it because of an incompatible sys_errlist
# definition.
frag=mt-mingw32
;;
esac
# Try to handle funky case of solaris 2 -> sun 4.
case "${host}" in
sparc-sun-sunos4.1.3)
if [ "${with_cross_host}" != "${host}" ] ; then
frag=mt-sunos4
fi
;;
esac
frags=$frag
# If they didn't specify --enable-shared, don't generate shared libs.
case "${enable_shared}" in
yes) shared=yes ;;
no) shared=no ;;
*) shared=yes ;;
esac
if [ "${shared}" = "yes" ]; then
case "${host}" in
hppa*-*-*) frags="${frags} ../../config/mh-papic" ;;
i[3456]86-*-*) frags="${frags} ../../config/mh-x86pic" ;;
*-*-*) frags="${frags} ../../config/mh-${host_cpu}pic" ;;
esac
fi
echo "# Warning: this fragment is automatically generated" > temp-frag
for frag in ${frags}; do
case ${frag} in
../* )
if [ ${srcdir} = . ]; then
[ -n "${with_target_subdir}" ] && frag=../${frag}
[ -n "${with_multisrctop}" ] && frag=${with_multisrctop}${frag}
fi
;;
esac
frag=${srcdir}/${xsrcdir}config/$frag
if [ -f ${frag} ]; then
echo "Appending ${frag} to xhost-mkfrag"
echo "# Following fragment copied from ${frag}" >> temp-frag
cat ${frag} >> temp-frag
fi
done
frag=xhost-mkfrag
${config_shell} ${moveifchange} temp-frag xhost-mkfrag
|