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 ;;
|
|
|
|
*-*-freebsd2.2.*) frag=mh-fbsd21 ;;
|
1997-08-22 00:57:35 +02:00
|
|
|
i[345]86-*-windows*) frag=mh-windows ;;
|
|
|
|
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 ;;
|
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
|
|
|
|
case "${host}" in
|
1998-05-16 01:42:58 +02:00
|
|
|
*-*-cygwin32*) ;;
|
1997-08-22 00:57:35 +02:00
|
|
|
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
|
1998-03-05 01:28:10 +01:00
|
|
|
case ${frag} in
|
|
|
|
../* )
|
|
|
|
if [ ${srcdir} = . ]; then
|
|
|
|
[ -n "${with_target_subdir}" ] && frag=../${frag}
|
|
|
|
[ -n "${with_multisrctop}" ] && frag=${with_multisrctop}${frag}
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
1997-08-22 00:57:35 +02:00
|
|
|
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
|
|
|
|
|
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
|
1998-05-16 01:42:58 +02:00
|
|
|
${CONFIG_SHELL} ${libiberty_topdir}/move-if-change temp-frag xhost-mkfrag
|