Tcl Extension Architecture (TEA) Sample Extension

Check-in [09a36ad8cb]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Bug 1960628: sampleextension: pkgIndex.tcl.in: use @PACKAGE_NAME@ instead of "Tclsha1" tclconfig: tcl.m4: Allow ${SHLIB_SUFFIX} to be overridden at configure-time Also fix some comment typos, and an uninitialized variable bug-waiting-to-happen.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 09a36ad8cb4cbc2f79b3af82461549657db38f6e
User & Date: jenglish 2009-03-12 00:57:52.000
Context
2009-03-18
18:39
Removed offending 'rm -f' line as described in 2429444. check-in: a930cf2942 user: stwo tags: trunk
2009-03-12
00:57
Bug 1960628: sampleextension: pkgIndex.tcl.in: use @PACKAGE_NAME@ instead of "Tclsha1" tclconfig: tcl.m4: Allow ${SHLIB_SUFFIX} to be overridden at configure-time Also fix some comment typos, and an uninitialized variable bug-waiting-to-happen. check-in: 09a36ad8cb user: jenglish tags: trunk
2008-12-22
05:52
autoconf-2.59 check-in: b706d1a065 user: das tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to ChangeLog.





1
2
3
4
5
6
7





2008-12-20  Daniel Steffen  <[email protected]>

	* Makefile.in: use INSTALL_LIBRARY instead of INSTALL_PROGRAM to
	install libraries, avoids breakage from tcl's install-strip when
	built as a bundled package.

2008-06-18  Pat Thoyts  <[email protected]>
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
2009-03-11  Joe English  <[email protected]>

	* pkgIndex.tcl.in: use @PACKAGE_NAME@ instead of "Tclsha1"
	[Bug 1960628].

2008-12-20  Daniel Steffen  <[email protected]>

	* Makefile.in: use INSTALL_LIBRARY instead of INSTALL_PROGRAM to
	install libraries, avoids breakage from tcl's install-strip when
	built as a bundled package.

2008-06-18  Pat Thoyts  <[email protected]>
Changes to pkgIndex.tcl.in.
1
2
3
4
5
#
# Tcl package index file
#
package ifneeded Tclsha1 @PACKAGE_VERSION@ \
    [list load [file join $dir @PKG_LIB_FILE@] @PACKAGE_NAME@]



|

1
2
3
4
5
#
# Tcl package index file
#
package ifneeded @PACKAGE_NAME@ @PACKAGE_VERSION@ \
    [list load [file join $dir @PKG_LIB_FILE@] @PACKAGE_NAME@]