Check-in [445ed79573]
Overview
Comment:Use correct thread package name even if it is an alpha release
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA1:445ed79573e18c89ca6b8761c44392f70c8babd6
User & Date: rkeene on 2022-08-14 21:28:42
Other Links: manifest | tags
Context
2022-08-14
21:28
Use correct thread package name even if it is an alpha release Leaf check-in: 445ed79573 user: rkeene tags: trunk
2022-08-12
15:21
Remove setting _USE_32BIT_TIME_T, does not seem to be required anymore.

It was added as part of [cb7ed6affe], but now causes [df2dd68dca] check-in: b93594845d user: rkeene tags: trunk

Changes

Modified kitsh/buildsrc/kitsh-0.0/aclocal.m4 from [859b63dc85] to [822def6685].

   241    241   			], [
   242    242   				DC_TEST_WHOLE_ARCHIVE_SHARED_LIB([$ARCHS $projlibfiles], [
   243    243   					projlibfiles="${projlibfiles}"
   244    244   				])
   245    245   			])
   246    246   
   247    247   			hide_symbols="0"
   248         -			subprojs="`echo " $projlibfilesnostub " | sed 's@ [[^ ]]*/@ @g;s@ lib@ @g;s@[[0-9\.]]*\.a@ @g;s@ tdbc[[^ ]]*@ @g;s@ sqlite @ sqlite3 @;s@ tcldde[[0-9]][[0-9]]*s*g* @ @g;s@ tclreg[[0-9]][[0-9]]*s*g* @ @g;s@ tcl[[0-9]]*s*g* @ @g;s@^ *@@;s@ *[$]@@'`"
          248  +			subprojs="`echo " $projlibfilesnostub " | sed 's@ [[^ ]]*/@ @g;s@ lib@ @g;s@[[0-9\.]]*\.a@ @g;s@ thread[[0-9]][[A-Za-z0-9]]* @ thread @g;s@ tdbc[[^ ]]*@ @g;s@ sqlite @ sqlite3 @;s@ tcldde[[0-9]][[0-9]]*s*g* @ @g;s@ tclreg[[0-9]][[0-9]]*s*g* @ @g;s@ tcl[[0-9]]*s*g* @ @g;s@^ *@@;s@ *[$]@@'`"
   249    249   		fi
   250    250   
   251    251   		if test "${proj}" = "mk4tcl"; then
   252    252   			if test -n "${projlibfiles}"; then
   253    253   				AC_DEFINE(KIT_INCLUDES_MK4TCL, [1], [Specify this if you link against mkt4tcl])
   254    254   
   255    255   				kc_cv_feature_kit_includes_mk4tcl='1'
................................................................................
   299    299   		if test "${proj}" = "zlib"; then
   300    300   			continue
   301    301   		fi
   302    302   
   303    303   		if test -n "${subprojs}"; then
   304    304   			if test -n "${projlibfilesnostub}"; then
   305    305   				for subproj in $subprojs; do
          306  +					AC_MSG_CHECKING([for init functions for ${subproj}])
   306    307   					subprojucase="`echo ${subproj} | dd conv=ucase 2>/dev/null`"
   307    308   					subprojtcase="`echo ${subprojucase} | cut -c 1``echo ${subproj} | cut -c 2-`"
   308    309   					lib_init_func="${subprojtcase}_Init"
   309    310   					if test -f "${projdir}/inst/tcl-init-func"; then
   310    311   						lib_init_func="`cat "${projdir}/inst/tcl-init-func"`"
   311    312   					fi
   312    313   
   313    314   					echo "#define KIT_INCLUDES_${subprojucase}" >> kitInit-libs.h
   314    315   					echo "Tcl_AppInitProc ${lib_init_func};" >> kitInit-libs.h
   315    316   
   316    317   					libs_init_funcs="${libs_init_funcs} ${lib_init_func}"
          318  +					AC_MSG_RESULT([${lib_init_func}])
   317    319   				done
   318    320   			fi
   319    321   		fi
   320    322   
   321    323   		ARCHS="${ARCHS} ${projlibfiles}"
   322    324   		LIBS="${LIBS} ${projlibextra}"
   323    325   	done