Changes On Branch e2655f79ba3d8ae2

Changes In Branch pluggable Through [e2655f79ba] Excluding Merge-Ins

This is equivalent to a diff from 612f995831 to e2655f79ba

2011-05-28
23:59
Merged trunk changes into branch check-in: ddf9f18c93 user: rkeene tags: pluggable
2011-02-08
07:47
Updated to pull "CVS" updates from Fossil (location and method may change in the future) check-in: a0fa3aeee4 user: rkeene tags: trunk
06:57
Create new branch named "merge-kitdll-kitsh-common" check-in: 705256170a user: rkeene tags: merge-kitdll-kitsh-common
06:55
Updated to look in all directories at the root directory for projects check-in: e2655f79ba user: rkeene tags: pluggable
06:53
Create new branch named "pluggable" check-in: 960b777fca user: rkeene tags: pluggable
2010-11-11
17:16
Added workaround for building bug in Tk on FreeBSD check-in: 612f995831 user: rkeene tags: trunk
2010-11-03
14:02
Updated nightly builds to start from clean source every Wednesday check-in: f1179eeee0 user: rkeene tags: trunk

Modified kitsh/buildsrc/kitsh-0.0/aclocal.m4 from [9a1977c3cc] to [13694584fc].

150
151
152
153
154
155
156
157

158



159
160









161
162
163
164
165
166
167
		DC_DO_STATIC_LINK_LIB([C++ Library (UNIX)], [-lstdc++])
	])
])

AC_DEFUN(DC_FIND_TCLKIT_LIBS, [
	DC_SETUP_TCL_PLAT_DEFS

	for proj in mk4tcl tcl tclvfs tk; do

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




		libdir="../../../${proj}/inst"









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

		ARCHS="${ARCHS} ${libfiles}"

		AC_MSG_RESULT([${libfiles}])








|
>
|
>
>
>


>
>
>
>
>
>
>
>
>







150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
		DC_DO_STATIC_LINK_LIB([C++ Library (UNIX)], [-lstdc++])
	])
])

AC_DEFUN(DC_FIND_TCLKIT_LIBS, [
	DC_SETUP_TCL_PLAT_DEFS

	for projdir in ../../../*/; do
		proj="`basename "${projdir}"`"

		if test "${proj}" = "zlib"; then
			continue
		fi

		libdir="../../../${proj}/inst"

		if test -d "${libdir}"; then
			true
		else
			continue
		fi

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

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

		ARCHS="${ARCHS} ${libfiles}"

		AC_MSG_RESULT([${libfiles}])