# HG changeset patch # User diego # Date 1179730446 0 # Node ID a982544e5c08bcfdb35f160ce6e54bbc067f8a09 # Parent e070d7f61e9a08299006aeaee36633912f8f1a9e Add "uclinux" as an accepted system type in the linux() test. patch by Mike Frysinger, vapier.adi gmail com diff -r e070d7f61e9a -r a982544e5c08 configure --- a/configure Mon May 21 01:47:27 2007 +0000 +++ b/configure Mon May 21 06:54:06 2007 +0000 @@ -97,7 +97,7 @@ 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 "$?" ; }