Check-in [fa83093778]
Overview
Comment:Always return archive files in a deterministic order, otherwise mingw32 may fail to build kitsh correctly
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: fa8309377884ab7eed22042ecc20508553aba2de
User & Date: schelte on 2013-07-08 20:16:13
Original User & Date: sbron on 2013-07-08 20:16:13
Other Links: manifest | tags
Context
2013-08-06
23:55
Updated to use Tcl 8.5.14 as default build check-in: 31c33b52d5 user: rkeene tags: trunk
2013-07-08
20:16
Always return archive files in a deterministic order, otherwise mingw32 may fail to build kitsh correctly check-in: fa83093778 user: schelte tags: trunk
2013-07-05
20:49
Updated to not use 32-bit time_t on 64-bit Windows check-in: 85d560e68a user: rkeene tags: trunk
Changes

Modified kitsh/buildsrc/kitsh-0.0/aclocal.m4 from [2132d26434] to [9a21fd57db].

186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
			true
		else
			continue
		fi

		AC_MSG_CHECKING([for libraries required for ${proj}])

		projlibfiles="`find "${projlibdir}" -name '*.a' 2>/dev/null | tr "\n" ' '`"
		projlibfilesnostub="`find "${projlibdir}" -name '*.a' 2>/dev/null | grep -v 'stub' | tr "\n" ' '`"

		AC_MSG_RESULT([${projlibfilesnostub}])

		hide_symbols="1"
		initialize="1"








|







186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
			true
		else
			continue
		fi

		AC_MSG_CHECKING([for libraries required for ${proj}])

		projlibfiles="`find "${projlibdir}" -name '*.a' 2>/dev/null | sort | tr "\n" ' '`"
		projlibfilesnostub="`find "${projlibdir}" -name '*.a' 2>/dev/null | grep -v 'stub' | tr "\n" ' '`"

		AC_MSG_RESULT([${projlibfilesnostub}])

		hide_symbols="1"
		initialize="1"