Differences From Artifact [5d0cdc97c7]:
- File
kitsh/buildsrc/kitsh-0.0/aclocal.m4
— part of check-in
[cb76e549e7]
at
2010-09-26 04:39:39
on branch trunk
— Updated to try linking to Sun Studio before GNU Libstdc++
Updated to fix FFF 484 to make resultant kit work on 64-bit big endian systems (user: rkeene, size: 2044) [annotate] [blame] [check-ins using]
 
To Artifact [ef0e476ed6]:
- File kitsh/buildsrc/kitsh-0.0/aclocal.m4 — part of check-in [19963bc8da] at 2010-09-26 04:39:56 on branch trunk — Updated to build under i586-mingw32msvc (user: rkeene, size: 2423) [annotate] [blame] [check-ins using]
 
| ︙ | |||
79 80 81 82 83 84 85  | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102  | + + + + + + + + + + + + + + + + +  | 
				DC_DO_STATIC_LINK_LIBCXX
			fi
		fi
	done
	AC_SUBST(ARCHS)
])
AC_DEFUN(DC_SETUP_TCL_PLAT_DEFS, [
	AC_CANONICAL_HOST
  
	AC_MSG_CHECKING(host operating system)
	AC_MSG_RESULT($host_os)
  
	case $host_os in
		mingw32msvc*)
			CFLAGS="${CFLAGS} -mno-cygwin -mms-bitfields"
			AC_DEFINE(BUILD_tcl, [1], [Define if you need to pretend to be building Tcl (Windows)])
			;;
		cygwin*)
			CFLAGS="${CFLAGS} -mms-bitfields"
			;;
	esac
])          
 |