2002-03-27 00:29:30 +01:00
|
|
|
# Don't build the shared library for build.
|
|
|
|
if [ -n "${with_build_subdir}" ]; then
|
|
|
|
enable_shared=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
frag=
|
1999-05-03 09:29:11 +02:00
|
|
|
case "${host}" in
|
|
|
|
rs6000-ibm-aix3.1 | rs6000-ibm-aix)
|
|
|
|
frag=mh-aix ;;
|
|
|
|
*-*-cxux7*) frag=mh-cxux7 ;;
|
|
|
|
*-*-freebsd2.1.*) frag=mh-fbsd21 ;;
|
|
|
|
*-*-freebsd2.2.[012]) frag=mh-fbsd21 ;;
|
2000-02-22 16:59:20 +01:00
|
|
|
i370-*-opened*) frag=mh-openedition ;;
|
2003-05-20 04:49:35 +02:00
|
|
|
i[34567]86-*-windows*) frag=mh-windows ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
esac
|
|
|
|
|
2002-03-27 00:29:30 +01:00
|
|
|
if [ -n "${frag}" ]; then
|
|
|
|
frags=${libiberty_topdir}/libiberty/config/$frag
|
|
|
|
else
|
|
|
|
frags=
|
|
|
|
fi
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
# If they didn't specify --enable-shared, don't generate shared libs.
|
|
|
|
case "${enable_shared}" in
|
|
|
|
yes) shared=yes ;;
|
|
|
|
no) shared=no ;;
|
|
|
|
"") shared=no ;;
|
|
|
|
*) shared=yes ;;
|
|
|
|
esac
|
|
|
|
if [ "${shared}" = "yes" ]; then
|
2002-03-27 00:29:30 +01:00
|
|
|
frag=
|
1999-05-03 09:29:11 +02:00
|
|
|
case "${host}" in
|
|
|
|
*-*-cygwin*) ;;
|
2002-03-27 00:29:30 +01:00
|
|
|
alpha*-*-linux*) frag=mh-elfalphapic ;;
|
|
|
|
arm*-*-*) frag=mh-armpic ;;
|
|
|
|
hppa*-*-*) frag=mh-papic ;;
|
2003-05-20 04:49:35 +02:00
|
|
|
i[34567]86-*-* | x86_64-*-*)
|
2002-05-13 22:01:19 +02:00
|
|
|
frag=mh-x86pic ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
powerpc*-*-aix*) ;;
|
2002-03-27 00:29:30 +01:00
|
|
|
powerpc*-*-*) frag=mh-ppcpic ;;
|
|
|
|
sparc*-*-*) frag=mh-sparcpic ;;
|
2002-10-16 21:54:54 +02:00
|
|
|
s390*-*-*) frag=mh-s390pic ;;
|
2002-03-27 00:29:30 +01:00
|
|
|
*) frag=mh-${host_cpu}pic ;;
|
1999-05-03 09:29:11 +02:00
|
|
|
esac
|
2002-03-27 00:29:30 +01:00
|
|
|
if [ -n "${frag}" ]; then
|
|
|
|
frags="${frags} ${libiberty_topdir}/config/${frag}"
|
|
|
|
fi
|
1999-05-03 09:29:11 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "# Warning: this fragment is automatically generated" > temp-frag
|
|
|
|
|
|
|
|
for frag in ${frags}; do
|
|
|
|
if [ -f ${frag} ]; then
|
|
|
|
echo "Appending ${frag} to xhost-mkfrag"
|
|
|
|
echo "# Following fragment copied from ${frag}" >> temp-frag
|
|
|
|
cat ${frag} >> temp-frag
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# record if we want to build shared libs.
|
|
|
|
if [ "${shared}" = "yes" ]; then
|
|
|
|
echo enable_shared = yes >> temp-frag
|
|
|
|
else
|
|
|
|
echo enable_shared = no >> temp-frag
|
|
|
|
fi
|
|
|
|
|
|
|
|
frag=xhost-mkfrag
|
2000-02-22 16:59:20 +01:00
|
|
|
${CONFIG_SHELL-/bin/sh} ${libiberty_topdir}/move-if-change temp-frag xhost-mkfrag
|