Add "uclinux" as an accepted system type in the linux() test.

patch by Mike Frysinger, vapier.adi gmail com


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23361 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-05-21 06:54:06 +00:00
parent a147ec530e
commit 61ee11c120
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -97,7 +97,7 @@ die () {
issystem() {
test "`echo $system_name | tr A-Z a-z`" = "`echo $1 | tr A-Z a-z`"
}
linux() { issystem "Linux" ; return "$?" ; }
linux() { issystem "Linux" || issystem "uClinux" ; return "$?" ; }
sunos() { issystem "SunOS" ; return "$?" ; }
hpux() { issystem "HP-UX" ; return "$?" ; }
irix() { issystem "IRIX" ; return "$?" ; }