2002-03-26 23:56:51 +01:00
|
|
|
# Don't build the shared library for build.
|
|
|
|
if [ -n "${with_build_subdir}" ]; then
|
|
|
|
enable_shared=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
frag=
|
1997-08-22 00:57:35 +02:00
|
|
|
case "${host}" in
|
|
|
|
rs6000-ibm-aix3.1 | rs6000-ibm-aix)
|
1998-05-16 01:42:58 +02:00
|
|
|
frag=mh-aix ;;
|
1997-08-22 00:57:35 +02:00
|
|
|
*-*-cxux7*) frag=mh-cxux7 ;;
|
1997-10-14 21:10:45 +02:00
|
|
|
*-*-freebsd2.1.*) frag=mh-fbsd21 ;;
|
1998-10-09 00:48:52 +02:00
|
|
|
*-*-freebsd2.2.[012]) frag=mh-fbsd21 ;;
|
1999-09-08 08:33:11 +02:00
|
|
|
i370-*-opened*) frag=mh-openedition ;;
|
1997-08-22 00:57:35 +02:00
|
|
|
i[345]86-*-windows*) frag=mh-windows ;;
|
|
|
|
esac
|
|
|
|
|
2002-03-26 23:56:51 +01:00
|
|
|
if [ -n "${frag}" ]; then
|
|
|
|
frags=${libiberty_topdir}/libiberty/config/$frag
|
|
|
|
else
|
|
|
|
frags=
|
|
|
|
fi
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
# If they didn't specify --enable-shared, don't generate shared libs.
|
|
|
|
case "${enable_shared}" in
|
|
|
|
yes) shared=yes ;;
|
|
|
|
no) shared=no ;;
|
1998-05-21 09:52:43 +02:00
|
|
|
"") shared=no ;;
|
1997-08-22 00:57:35 +02:00
|
|
|
*) shared=yes ;;
|
|
|
|
esac
|
|
|
|
if [ "${shared}" = "yes" ]; then
|
2002-03-26 23:56:51 +01:00
|
|
|
frag=
|
1997-08-22 00:57:35 +02:00
|
|
|
case "${host}" in
|
1999-04-07 05:31:24 +02:00
|
|
|
*-*-cygwin*) ;;
|
2002-03-26 23:56:51 +01:00
|
|
|
alpha*-*-linux*) frag=mh-elfalphapic ;;
|
|
|
|
arm*-*-*) frag=mh-armpic ;;
|
|
|
|
hppa*-*-*) frag=mh-papic ;;
|
2002-05-13 21:13:44 +02:00
|
|
|
i[3456]86-*-* | x86_64-*-*)
|
|
|
|
frag=mh-x86pic ;;
|
1999-03-11 01:10:20 +01:00
|
|
|
powerpc*-*-aix*) ;;
|
2002-03-26 23:56:51 +01:00
|
|
|
powerpc*-*-*) frag=mh-ppcpic ;;
|
|
|
|
sparc*-*-*) frag=mh-sparcpic ;;
|
|
|
|
*) frag=mh-${host_cpu}pic ;;
|
1997-08-22 00:57:35 +02:00
|
|
|
esac
|
2002-03-26 23:56:51 +01:00
|
|
|
if [ -n "${frag}" ]; then
|
|
|
|
frags="${frags} ${libiberty_topdir}/config/${frag}"
|
|
|
|
fi
|
1997-08-22 00:57:35 +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
|
|
|
|
|
1998-05-16 15:02:37 +02:00
|
|
|
# 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
|
|
|
|
|
1997-08-22 00:57:35 +02:00
|
|
|
frag=xhost-mkfrag
|
1999-10-10 09:27:40 +02:00
|
|
|
${CONFIG_SHELL-/bin/sh} ${libiberty_topdir}/move-if-change temp-frag xhost-mkfrag
|