summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure b/configure
index 1c423f5270..920bd40430 100755
--- a/configure
+++ b/configure
@@ -68,6 +68,7 @@ qnx() { issystem "QNX" ; return "$?" ; }
darwin() { issystem "Darwin" ; return "$?" ; }
gnu() { issystem "GNU" ; return "$?" ; }
mingw32() { issystem "MINGW32" ; return "$?" ; }
+morphos() { issystem "MorphOS" ; return "$?" ; }
# arch test boolean functions
# x86/x86pc is used by QNX
@@ -383,6 +384,9 @@ if test -z "$_target" ; then
MINGW32*)
system_name=MINGW32
;;
+ MorphOS)
+ system_name=MorphOS
+ ;;
*)
system_name="$system_name-UNKNOWN"
;;
@@ -430,6 +434,7 @@ else
openbsd) system_name=OpenBSD ;;
sunos) system_name=SunOS ;;
qnx) system_name=QNX ;;
+ morphos) system_name=MorphOS ;;
esac
# We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
host_arch=`echo $_target | cut -d '-' -f 1 | tr '_' '-'`