configure: optimize uname finding a bit

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
Felipe Contreras 2010-06-05 14:05:15 +03:00 committed by Carl Worth
parent 0b4474f4fa
commit 9d9668e3e7

7
configure vendored
View file

@ -275,15 +275,16 @@ fi
libdir_in_ldconfig=0
printf "Checking which platform we are on... "
if [ `uname` = "Darwin" ] ; then
uname=`uname`
if [ $uname = "Darwin" ] ; then
printf "Mac OS X.\n"
platform=MACOSX
linker_resolves_library_dependencies=0
elif [ `uname` = "SunOS" ] ; then
elif [ $uname = "SunOS" ] ; then
printf "Solaris.\n"
platform=SOLARIS
linker_resolves_library_dependencies=0
elif [ `uname` = "Linux" ] ; then
elif [ $uname = "Linux" ] ; then
printf "Linux\n"
platform=LINUX
linker_resolves_library_dependencies=1