diff options
author | das <das> | 2007-11-15 04:16:51 (GMT) |
---|---|---|
committer | das <das> | 2007-11-15 04:16:51 (GMT) |
commit | 5b297df4a2180156c007398ce72680c2ab6d14bf (patch) | |
tree | c40fcf53fa25651032283aab111d1278c9c4d67c /unix | |
parent | c40712d24f8def6f6ad3a484103fdfdba35cbf10 (diff) | |
download | tcl-5b297df4a2180156c007398ce72680c2ab6d14bf.zip tcl-5b297df4a2180156c007398ce72680c2ab6d14bf.tar.gz tcl-5b297df4a2180156c007398ce72680c2ab6d14bf.tar.bz2 |
autoconf-2.59
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/unix/configure b/unix/configure index a3070fb..bcdd28f 100755 --- a/unix/configure +++ b/unix/configure @@ -18065,8 +18065,8 @@ echo "${ECHO_T}$tcl_ok" >&6 # Does the C stack grow upwards or downwards? Or cross-compiling? #-------------------------------------------------------------------- -echo "$as_me:$LINENO: checking does the C stack grow upwards in memory?" >&5 -echo $ECHO_N "checking does the C stack grow upwards in memory?... $ECHO_C" >&6 +echo "$as_me:$LINENO: checking if the C stack grows upwards in memory" >&5 +echo $ECHO_N "checking if the C stack grows upwards in memory... $ECHO_C" >&6 if test "${tcl_cv_stack_grows_up+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else @@ -18081,14 +18081,11 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ - int StackGrowsUp(int *parent) - { + int StackGrowsUp(int *parent) { int here; return (&here < parent); } - - int main (int argc, char *argv[]) - { + int main (int argc, char *argv[]) { int foo; return StackGrowsUp(&foo); } |