Tcl Extension Architecture (TEA) Sample Extension

Check-in [d2a37d68c4]
Login

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

Overview
Comment:No need for AC_PREREQ in configure.ac: it's already in tcl.m4
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | main
Files: files | file ages | folders
SHA3-256: d2a37d68c40c90505d8eec23e33ace9c11316c5fa3ba383a5d298983871bf02f
User & Date: jan.nijtmans 2025-03-20 14:55:51.039
Context
2025-04-09
14:32
TEA update Leaf check-in: de1fac22b2 user: jan.nijtmans tags: trunk, main
2025-03-20
14:55
No need for AC_PREREQ in configure.ac: it's already in tcl.m4 check-in: d2a37d68c4 user: jan.nijtmans tags: trunk, main
14:26
Re-generate "configure" check-in: 02aabf91bc user: jan.nijtmans tags: trunk, main
Changes
Unified Diff Ignore Whitespace Patch
Changes to configure.ac.
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# set as provided.  These will also be added as -D defs in your Makefile
# so you can encode the package version directly into the source files.
# This will also define a special symbol for Windows (BUILD_<PACKAGE_NAME>
# so that we create the export library with the dll.
#-----------------------------------------------------------------------

AC_INIT([sample],[0.6])
AC_PREREQ([2.69])

#--------------------------------------------------------------------
# Call TEA_INIT as the first TEA_ macro to set up initial vars.
# This will define a ${TEA_PLATFORM} variable == "unix" or "windows"
# as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE.
#--------------------------------------------------------------------








<







16
17
18
19
20
21
22

23
24
25
26
27
28
29
# set as provided.  These will also be added as -D defs in your Makefile
# so you can encode the package version directly into the source files.
# This will also define a special symbol for Windows (BUILD_<PACKAGE_NAME>
# so that we create the export library with the dll.
#-----------------------------------------------------------------------

AC_INIT([sample],[0.6])


#--------------------------------------------------------------------
# Call TEA_INIT as the first TEA_ macro to set up initial vars.
# This will define a ${TEA_PLATFORM} variable == "unix" or "windows"
# as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE.
#--------------------------------------------------------------------