[Dist-svn] SF.net SVN: dist:[198] trunk/dist/Configure
Brought to you by:
rmanfredi
From: <rma...@us...> - 2015-11-14 15:06:48
|
Revision: 198 http://sourceforge.net/p/dist/code/198 Author: rmanfredi Date: 2015-11-14 15:06:46 +0000 (Sat, 14 Nov 2015) Log Message: ----------- Regenarated Configure with the newest units. Modified Paths: -------------- trunk/dist/Configure Modified: trunk/dist/Configure =================================================================== --- trunk/dist/Configure 2015-11-14 15:04:42 UTC (rev 197) +++ trunk/dist/Configure 2015-11-14 15:06:46 UTC (rev 198) @@ -14,11 +14,11 @@ # Note: this Configure script was generated automatically. Rather than # working with this copy of Configure, you may wish to get metaconfig. # The dist package (which contains metaconfig) is available via SVN: -# svn co https://svn.sourceforge.net/svnroot/dist/trunk/dist +# svn co https://svn.code.sf.net/p/dist/code/trunk/dist -# $Id: Head.U 41 2010-11-28 00:21:26Z rmanfredi $ +# $Id: Head.U 167 2013-05-08 17:58:00Z rmanfredi $ # -# Generated on Tue Feb 7 19:02:16 RST 2012 [metaconfig 3.5-123] +# Generated on Sat Nov 14 16:05:58 CET 2015 [metaconfig 3.5-197] cat >c1$$ <<EOF ARGGGHHHH!!!!! @@ -283,6 +283,7 @@ lkflags='' locincpth='' optimize='' +pthread='' cf_email='' cf_by='' cf_time='' @@ -721,7 +722,7 @@ esac shift ;; - -V) echo "$me generated by metaconfig 3.5-123." >&2 + -V) echo "$me generated by metaconfig 3.5-197." >&2 exit 0;; --) break;; -*) echo "$me: unknown option $1" >&2; shift; error=true;; @@ -787,8 +788,13 @@ true) exec 1>/dev/null;; esac +touch optdef.sh +if grep -q '\\' optdef.sh >/dev/null 2>&1; then + echo "Configure does not support \\ in -D or -U arguments" >&2 + exit 1 +fi + : run the defines and the undefines, if any, but leave the file out there... -touch optdef.sh . ./optdef.sh : create the posthint manipulation script and leave the file out there... touch posthint.sh @@ -1620,6 +1626,7 @@ : determine whether symbolic links are supported echo " " $rm -f blurfl sym +$touch blurfl if $ln -s blurfl sym > /dev/null 2>&1 && $test -f sym; then echo "Symbolic links are supported." >&4 lns="$ln -s" @@ -2136,6 +2143,7 @@ saved_osname="$osname" saved_osvers="$osvers" +saved_libswanted="$libswanted" tmp_n="$n" tmp_c="$c" tmp_sh="$sh" @@ -2196,6 +2204,12 @@ n="$tmp_n" c="$tmp_c" +case "$libswanted" in +"$saved_libswanted") ;; +*) libs='';; +esac +libswanted="$saved_libswanted" + . ./checkcc case "$targetarch" in '') ;; @@ -3314,9 +3328,19 @@ EOM cont=x while test "$cont"; do + case "$MAILDOMAIN" in + '') + if $test -s /etc/mailname; then + maildomain=`$cat /etc/mailname` + else + maildomain="$myhostname$mydomain" + fi + ;; + *) maildomain="$MAILDOMAIN";; + esac case "$cf_email" in - '') dflt="$cf_by@$myhostname$mydomain";; - *) dflt="$cf_email";; + '') dflt="$cf_by@$maildomain";; + *) dflt="$cf_email";; esac rp='What is your e-mail address?' . ./myread @@ -3675,6 +3699,7 @@ 'none') optimize=" ";; esac + dflt='' : We will not override a previous value, but we might want to : augment a hint file @@ -3868,7 +3893,7 @@ : coherency check echo " " echo "Checking your choice of C compiler and flags for coherency..." >&4 -set X $cc $optimize $ccflags $ldflags -o try try.c +set X $cc $optimize $pthread $ccflags $ldflags -o try try.c shift $cat >try.msg <<EOM I've tried to compile and run a simple program with: @@ -4544,6 +4569,7 @@ prefixexp='$prefixexp' privlib='$privlib' privlibexp='$privlibexp' +pthread='$pthread' revision='$revision' rm='$rm' rmail='$rmail' @@ -4626,8 +4652,7 @@ : Finish up by extracting the .SH files case "$alldone" in exit) - $rm -rf UU - echo "Extraction done." + echo "Stopping at your request, leaving temporary files around." exit 0 ;; cont) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |