diff configure @ 1323:3e38a0c03567

Some minor comment fixes.
author jkeil
date Sat, 14 Jul 2001 17:05:23 +0000
parents 40083e7ad5ce
children 84df2a0ce2db
line wrap: on
line diff
--- a/configure	Sat Jul 14 17:03:55 2001 +0000
+++ b/configure	Sat Jul 14 17:05:23 2001 +0000
@@ -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 "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 @@
     ;;
 esac
 
-# Determine our OS name and OS dependent libs
+# Determine OS dependent libs
 
 if [ "$system_name" = "FreeBSD" ]; then
     _archlibs="-rdynamic -pthread"