-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathckConfig.sh.in
39 lines (31 loc) · 1.25 KB
/
ckConfig.sh.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# ckConfig.sh --
#
# This shell script (for sh) is generated automatically by Ck's
# configure script. It will create shell variables for most of
# the configuration options discovered by the configure script.
# This script is intended to be included by the configure scripts
# for Ck extensions so that they don't have to figure this all
# out for themselves.
#
# The information in this file is specific to a single platform.
#
# $Id: ckConfig.sh.in,v 1.2 1999/12/12 09:22:09 chw Exp chw $
# Ck's version number.
CK_VERSION='@CK_VERSION@'
CK_MAJOR_VERSION='@CK_MAJOR_VERSION@'
CK_MINOR_VERSION='@CK_MINOR_VERSION@'
# -D flags for use with the C compiler.
CK_DEFS='@DEFS@'
# The name of the Ck library (may be either a .a file or a shared library):
CK_LIB_FILE=@CK_LIB_FILE@
# Additional libraries to use when linking Ck.
CK_LIBS='@CURSESLIBSW@ @DL_LIBS@ @LIBS@ @MATH_LIBS@'
# Top-level directory in which Ck's files are installed.
CK_PREFIX='@prefix@'
# Top-level directory in which Tcl's platform-specific files (e.g.
# executables) are installed.
CK_EXEC_PREFIX='@exec_prefix@'
# -I switch(es) where to find curses include files
CK_CURSESINCLUDES='@CURSESINCLUDES@ @USE_NCURSES@'
# Linker switch(es) to use when linking with curses
CK_CURSESLIBSW='@CURSESLIBSW@'