Tcl Extension Architecture (TEA) Sample Extension

Check-in [8dd01ec27d]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:
* tcl.m4 (TEA_CONFIG_CFLAGS): harden the check to add _r to CC on AIX with threads.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 8dd01ec27d71110080a4521c972348e040f83928
User & Date: hobbs 2009-04-28 00:40:24.000
Context
2009-05-04
23:47
Fix pkgindex so that the tests will run properly check-in: a2c04952d8 user: patthoyts tags: trunk
2009-04-28
00:40
* tcl.m4 (TEA_CONFIG_CFLAGS): harden the check to add _r to CC on AIX with threads.
check-in: 8dd01ec27d user: hobbs tags: trunk
2009-04-10
23:19
autoconf-2.59 check-in: 06b0a3b600 user: das tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to ChangeLog.





1
2
3
4
5
6
7





2009-03-26  Jan Nijtmans <[email protected]>

	* configure: Regenerated to use latest TEA tcl.m4.

2009-03-20  Andreas Kupries <[email protected]>

	* configure: Regenerated to get my latest updates to tcl.m4 (See
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
2009-04-27  Jeff Hobbs  <[email protected]>

	* tcl.m4 (TEA_CONFIG_CFLAGS): harden the check to add _r to CC on
	AIX with threads.

2009-03-26  Jan Nijtmans <[email protected]>

	* configure: Regenerated to use latest TEA tcl.m4.

2009-03-20  Andreas Kupries <[email protected]>

	* configure: Regenerated to get my latest updates to tcl.m4 (See
Changes to configure.
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536

7537
7538
7539
7540
7541
7542
7543
7544
	    DL_OBJS="tclLoadNone.obj"
    	    ;;
	AIX-*)
	    if test "${TCL_THREADS}" = "1" -a "$GCC" != "yes"; then

		# AIX requires the _r compiler when gcc isn't being used
		case "${CC}" in
		    *_r)
			# ok ...
			;;
		    *)

			CC=${CC}_r
			;;
		esac
		echo "$as_me:$LINENO: result: Using $CC for compiling with threads" >&5
echo "${ECHO_T}Using $CC for compiling with threads" >&6

fi








|



>
|







7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
	    DL_OBJS="tclLoadNone.obj"
    	    ;;
	AIX-*)
	    if test "${TCL_THREADS}" = "1" -a "$GCC" != "yes"; then

		# AIX requires the _r compiler when gcc isn't being used
		case "${CC}" in
		    *_r|*_r\ *)
			# ok ...
			;;
		    *)
			# Make sure only first arg gets _r
		    	CC=`echo "$CC" | sed -e 's/^\([^ ]*\)/\1_r/'`
			;;
		esac
		echo "$as_me:$LINENO: result: Using $CC for compiling with threads" >&5
echo "${ECHO_T}Using $CC for compiling with threads" >&6

fi