-
Notifications
You must be signed in to change notification settings - Fork 1
/
tdomConfig.sh.in
63 lines (54 loc) · 1.88 KB
/
tdomConfig.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# tdomConfig.sh --
#
# This shell script (for Bourne sh and alike) is generated
# automatically by tDOM configure script. It will create
# shell variables for some of the configuration options
# discovered by the configure. This script is intended to be
# sourced by the configure scripts for tDOM extensions so
# that they don't have to figure this all out for themselves.
# This file does not duplicate information already provided
# by tclConfig.sh, so you may need to use that file in addition
# to this one. To be able to locate this file easily, extensions
# might want to include the tdom.m4 file in their configure
# scripts and use the TDOM_PATH_CONFIG and TDOM_LOAD_CONFIG.
#
# The information in this file is specific to a single platform.
#
#
# tDOM version number
#
TDOM_VERSION='@PACKAGE_VERSION@'
# The name of the TDOM library (may be either a .a file or a shared library):
TDOM_LIB_FILE=@PKG_LIB_FILE@
#
# The name of the tDOM stub library file
#
TDOM_STUB_LIB_FILE=@PKG_STUB_LIB_FILE@
#
# String to pass to linker to pick up the tDOM library from
# its build directory.
#
TDOM_BUILD_STUB_LIB_SPEC='@PKG_BUILD_STUB_LIB_SPEC@'
#
# String to pass to linker to pick up the tDOM library from
# its installed directory.
#
TDOM_STUB_LIB_SPEC='@PKG_STUB_LIB_SPEC@'
# String to pass to linker to pick up the TDOM stub library from its
# build directory.
#
TDOM_BUILD_STUB_LIB_PATH='@PKG_BUILD_STUB_LIB_PATH@'
# String to pass to linker to pick up the TDOM stub library from its
# installed directory.
#
TDOM_STUB_LIB_PATH='@PKG_STUB_LIB_PATH@'
#
# Location of the top-level source directories from which tDOM
# was built. This is the directory that contains generic, unix,
# win etc. If tDOM was compiled in a different place than the
# directory containing the source files, this points to the
# location of the sources, not the location where tDOM was compiled.
#
TDOM_SRC_DIR='@srcdir@'
# EOF