Check-in [e2655f79ba]
Overview
Comment:Updated to look in all directories at the root directory for projects
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | pluggable
Files: files | file ages | folders
SHA1: e2655f79ba3d8ae24d30e1980f3ded067a275dc1
User & Date: rkeene on 2011-02-08 06:55:21
Other Links: branch diff | manifest | tags
Context
2011-05-28
23:59
Merged trunk changes into branch check-in: ddf9f18c93 user: rkeene tags: pluggable
2011-02-08
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
Changes

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}])