summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-26 18:08:10 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-26 18:08:10 +0000
commit7bccd91576753e9885d4a44204f96c0229f34f06 (patch)
treea595a94433e700b6ff33e40a633ab684924f5a10 /configure
parent3748ff70d0ffce155ac40545d51c399ea0ee2ed2 (diff)
downloadmpv-7bccd91576753e9885d4a44204f96c0229f34f06.tar.bz2
mpv-7bccd91576753e9885d4a44204f96c0229f34f06.tar.xz
initial MorphOS/Amiga (GeekGadgets) support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10946 b3059339-0415-0410-9bf9-f77b7e298cf2
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 '_' '-'`