summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-14 17:05:23 +0000
committerjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-14 17:05:23 +0000
commite258b9bde19e51a6e0197fd4b42cabac2a53c77a (patch)
tree1188acbf4850c35ea9c362d94b156f07451149ce
parenta1359841baeeb983db9aab759bbabb3da0c575c2 (diff)
downloadmpv-e258b9bde19e51a6e0197fd4b42cabac2a53c77a.tar.bz2
mpv-e258b9bde19e51a6e0197fd4b42cabac2a53c77a.tar.xz
Some minor comment fixes.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1324 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure8
1 files changed, 5 insertions, 3 deletions
diff --git a/configure b/configure
index bc268ff475..75c47718e7 100755
--- a/configure
+++ b/configure
@@ -101,8 +101,8 @@
# Check how echo works in this /bin/sh
case `echo -n` in
--n) _echo_n= _echo_c='\c';;
-*) _echo_n=-n _echo_c=;;
+-n) _echo_n= _echo_c='\c';; # seems to be a SysV echo
+*) _echo_n=-n _echo_c=;; # OK, a BSD style echo
esac
@@ -184,6 +184,8 @@ echo "You can get detailed help on configure with: $0 --help"
echo "Please wait while ./configure discovers your software and hardware environment!"
+# Determine our OS name and CPU architecture
+
system_name=`uname -s 2>&1` # name of operating system: Linux, FreeBSD, NetBSD, SunOS
host_arch=`uname -p 2>&1` # host's instruction set or processor type
case "$host_arch" in
@@ -197,7 +199,7 @@ unknown) # Linux returns "unknown" for the processor type
;;
esac
-# Determine our OS name and OS dependent libs
+# Determine OS dependent libs
if [ "$system_name" = "FreeBSD" ]; then
_archlibs="-rdynamic -pthread"