summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authorhobbs <hobbs>2009-04-28 16:46:20 (GMT)
committerhobbs <hobbs>2009-04-28 16:46:20 (GMT)
commita084e20d7a737e54cee53c89b1ac6e0c0ecd5e8f (patch)
tree387a4d1ebe76266919dec30e413b1f2d84accd22 /unix/tcl.m4
parent654740f1977f59f7a256d1361589f3dd97083339 (diff)
downloadtcl-a084e20d7a737e54cee53c89b1ac6e0c0ecd5e8f.zip
tcl-a084e20d7a737e54cee53c89b1ac6e0c0ecd5e8f.tar.gz
tcl-a084e20d7a737e54cee53c89b1ac6e0c0ecd5e8f.tar.bz2
* unix/tcl.m4, unix/configure (SC_CONFIG_CFLAGS): harden the check
to add _r to CC on AIX with threads.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m45
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index bcd3611..479ea08 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1128,11 +1128,12 @@ dnl AC_CHECK_TOOL(AR, ar)
AS_IF([test "${TCL_THREADS}" = "1" -a "$GCC" != "yes"], [
# AIX requires the _r compiler when gcc isn't being used
case "${CC}" in
- *_r)
+ *_r|*_r\ *)
# ok ...
;;
*)
- CC=${CC}_r
+ # Make sure only first arg gets _r
+ CC=`echo "$CC" | sed -e 's/^\([[^ ]]*\)/\1_r/'`
;;
esac
AC_MSG_RESULT([Using $CC for compiling with threads])