diff options
author | das <das> | 2008-04-01 21:40:24 (GMT) |
---|---|---|
committer | das <das> | 2008-04-01 21:40:24 (GMT) |
commit | d8c16dbe9e3c9cf9c149c2a3e75bd7b99a72d8bc (patch) | |
tree | eb54c72455f123953a295332496b8d65052f61a5 /unix | |
parent | bc40ffb339946efb1604c99508977df43659a1a6 (diff) | |
download | tcl-d8c16dbe9e3c9cf9c149c2a3e75bd7b99a72d8bc.zip tcl-d8c16dbe9e3c9cf9c149c2a3e75bd7b99a72d8bc.tar.gz tcl-d8c16dbe9e3c9cf9c149c2a3e75bd7b99a72d8bc.tar.bz2 |
(SunOS-5.1x): quote CC var to allow make-time override
sync with tcl/unix/tcl.m4 changes
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tcl.m4 | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 1550ab0..6b09a17 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1454,10 +1454,6 @@ dnl AC_CHECK_TOOL(AR, ar) # files in compat/*.c is being linked in. AS_IF([test x"${USE_COMPAT}" != x],[CFLAGS="$CFLAGS -fno-inline"]) - - # XIM peeking works under XFree86. - AC_DEFINE(PEEK_XCLOSEIM, 1, [May we use XIM peeking safely?]) - ;; GNU*) SHLIB_CFLAGS="-fPIC" @@ -1973,7 +1969,7 @@ dnl AC_CHECK_TOOL(AR, ar) AS_IF([test "$use_sunmath" = yes], [textmode=textoff],[textmode=text]) case $system in SunOS-5.[[1-9]][[0-9]]*) - SHLIB_LD="${CC} -G -z $textmode \${LDFLAGS}";; + SHLIB_LD="\${CC} -G -z $textmode \${LDFLAGS}";; *) SHLIB_LD="/usr/ccs/bin/ld -G -z $textmode";; esac |