Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Making the version number for practcl 4.0 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | practcl |
Files: | files | file ages | folders |
SHA3-256: | a6d9f5e62f450802f0035070ea8ba159 |
User & Date: | hypnotoad 2018-02-23 18:06:20 |
Context
2018-03-12
| ||
22:08 | Updating practcl check-in: 73921e6a67 user: hypnotoad tags: practcl | |
2018-02-23
| ||
18:06 | Making the version number for practcl 4.0 check-in: a6d9f5e62f user: hypnotoad tags: practcl | |
18:02 | Pulling changes from trunk check-in: 6f6a4f642f user: hypnotoad tags: practcl | |
Changes
Changes to tcl.m4.
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
....
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
|
# Copyright (c) 2002-2005 ActiveState Corporation. # Copyright (c) 2012-2018 Sean Woods. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. AC_PREREQ(2.57) dnl TEA extensions pass us the version of TEA they think they dnl are compatible with (must be set in TEA_INIT below) dnl TEA_VERSION="4.0" # Possible values for key variables defined: # # TEA_WINDOWINGSYSTEM - win32 aqua x11 (mirrors 'tk windowingsystem') # PRACTCL_WINDOWINGSYSTEM - windows cocoa hitheme x11 sdl # TEA_PLATFORM - windows unix # TEA_TK_EXTENSION - True if this is a Tk extension ................................................................................ # EXEEXT # Select the executable extension based on the host type. This # is a lightweight replacement for AC_EXEEXT that doesn't require # a compiler. #------------------------------------------------------------------------ AC_DEFUN([TEA_INIT], [ TEA_VERSION="3.13" AC_MSG_CHECKING([TEA configuration]) if test x"${PACKAGE_NAME}" = x ; then AC_MSG_ERROR([ The PACKAGE_NAME variable must be defined by your TEA configure.ac]) fi AC_MSG_RESULT([ok (TEA ${TEA_VERSION})]) |
<
<
<
|
|
7
8
9
10
11
12
13
14
15
16
17
18
19
20
....
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
|
# Copyright (c) 2002-2005 ActiveState Corporation. # Copyright (c) 2012-2018 Sean Woods. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. AC_PREREQ(2.57) # Possible values for key variables defined: # # TEA_WINDOWINGSYSTEM - win32 aqua x11 (mirrors 'tk windowingsystem') # PRACTCL_WINDOWINGSYSTEM - windows cocoa hitheme x11 sdl # TEA_PLATFORM - windows unix # TEA_TK_EXTENSION - True if this is a Tk extension ................................................................................ # EXEEXT # Select the executable extension based on the host type. This # is a lightweight replacement for AC_EXEEXT that doesn't require # a compiler. #------------------------------------------------------------------------ AC_DEFUN([TEA_INIT], [ TEA_VERSION="4.0" AC_MSG_CHECKING([TEA configuration]) if test x"${PACKAGE_NAME}" = x ; then AC_MSG_ERROR([ The PACKAGE_NAME variable must be defined by your TEA configure.ac]) fi AC_MSG_RESULT([ok (TEA ${TEA_VERSION})]) |