Tcl Source Code

Check-in [667dfe5615]
Login

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

Overview
Comment:Provide full Tcl patchlevel to tcl.pc and move private libs to "Libs.private". Record the fact that Tcl 8.6 requires Zlib 1.2.3 as a minimum. Supply both the shared library and the stub library to "Libs": Only one of them will actually be linked in, depending on whether -DUSE_TCL_STUBS is defined or not.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 667dfe5615608f9af415e28eb3755cd9c8eff08b
User & Date: jan.nijtmans 2014-04-08 15:02:27
Context
2014-04-10
07:57
Fix bug [e663138a06]: Test failures in "string is" check-in: 772c763815 user: jan.nijtmans tags: trunk
2014-04-08
15:02
Provide full Tcl patchlevel to tcl.pc and move private libs to "Libs.private". Record the fact that... check-in: 667dfe5615 user: jan.nijtmans tags: trunk
14:52
Provide full Tcl patchlevel to tcl.pc and move private libs to "Libs.private". check-in: e4510b50a5 user: jan.nijtmans tags: core-8-5-branch
2014-04-07
14:32
Merge-mark: Those two test-cases will arrive in trunk as soon as branch [http://core.tcl.tk/tcl/time... check-in: a006f5a452 user: jan.nijtmans tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to unix/tcl.pc.in.

1
2
3
4
5
6
7
8
9
10
11
12
13
14

15
# tcl pkg-config source file

prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@

Name: Tool Command Language
Description: Tcl is a powerful, easy-to-learn dynamic programming language, suitable for a wide range of uses.
URL: http://www.tcl.tk/
Version: @TCL_VERSION@
Requires:
Conflicts:
Libs: -L${libdir} @TCL_LIB_FLAG@ @TCL_LIBS@

Cflags: -I${includedir}










|
|
<
|
>

1
2
3
4
5
6
7
8
9
10
11
12

13
14
15
# tcl pkg-config source file

prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@

Name: Tool Command Language
Description: Tcl is a powerful, easy-to-learn dynamic programming language, suitable for a wide range of uses.
URL: http://www.tcl.tk/
Version: @TCL_VERSION@@TCL_PATCH_LEVEL@
Requires.private: zlib >= 1.2.3

Libs: -L${libdir} @TCL_LIB_FLAG@ @TCL_STUB_LIB_FLAG@
Libs.private: @TCL_LIBS@
Cflags: -I${includedir}