From 6233964798c3a851cd7a69d6abb0ebd33aa69910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 1 Jun 2005 14:33:46 +0000 Subject: [PATCH] Removed host BeOS version recognition: we now always default to target "haiku". Building our components for use with R5/dano/whatever is now something you need to want, it's not the default anymore. Note: you can still build single components for R5 by overriding the target platform per target, too, for example: $ TARGET_PLATFORM=r5 jam app_server git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12920 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- configure | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/configure b/configure index fc6f31a892..16ba204b2a 100755 --- a/configure +++ b/configure @@ -2,8 +2,6 @@ # # configure [ --floppy ] -target=unknown - # usage # # Prints usage. @@ -68,13 +66,16 @@ gcc_version= floppy= bochs_debug=0 include_gpl_addons=0 -revision=`uname -r` -case "$revision" in - 5.1) target=dano ;; - 5.0.4) target=bone ;; - 5.0*) target=r5 ;; - *) target=haiku ;; -esac +target=haiku + +# host BeOS recognition not needed anymore +# revision=`uname -r` +# case "$revision" in +# 5.1) target=dano ;; +# 5.0.4) target=bone ;; +# 5.0*) target=r5 ;; +# *) target=haiku ;; +#esac # parse parameters #