The "configure" script should now be able to detect the Haiku platform as well.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14104 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-09-02 13:23:51 +00:00
parent e5ee1dad6a
commit 4cbe4925ea

18
configure vendored
View File

@ -100,19 +100,15 @@ if [ -n "$floppy" ]; then
esac
fi
# BeOS
if [ "${platform}" = "BeOS" ] ; then
standard_gcc_settings
# Linux
else if [ "${platform}" = "Linux" ] ; then
standard_gcc_settings
# platform specific GCC settings
case "$platform" in
BeOS | Haiku | Linux)
standard_gcc_settings ;;
*)
# Unknown platform
else
echo Unsupported platform: ${platform}
exit 1
fi; fi
exit 1 ;;
esac
# Generate BuildConfig
cat << EOF > build/BuildConfig