109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
+
+
+
+
+
+
+
|
TCLEXT_FIND_TCLCONFIG
TCLEXT_LOAD_TCLCONFIG
AC_DEFINE_UNQUOTED([MODULE_SCOPE], [static], [Define how to declare a function should only be visible to the current module])
TCLEXT_BUILD='shared'
AC_ARG_ENABLE([shared], AS_HELP_STRING([--disable-shared], [disable the shared build (same as --enable-static)]), [
if test "$enableval" = "no"; then
TCLEXT_BUILD='static'
TCL_SUPPORTS_STUBS=0
fi
])
AC_ARG_ENABLE([static], AS_HELP_STRING([--enable-static], [enable a static build]), [
if test "$enableval" = "yes"; then
TCLEXT_BUILD='static'
TCL_SUPPORTS_STUBS=0
fi
])
|
152
153
154
155
156
157
158
159
160
161
162
163
|
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
+
-
+
+
+
+
|
esac
done
)`
TCL_DEFS="${TCL_DEFS_TCL_ONLY}"
AC_SUBST(TCL_DEFS)
dnl Needed for package installation
if test "$prefix" = 'NONE' -a "$exec_prefix" = 'NONE' -a "${libdir}" = '${exec_prefix}/lib'; then
TCL_PACKAGE_PATH="`echo "${TCL_PACKAGE_PATH}" | sed 's@ *$''@@' | awk '{ print [$]1 }'`"
TCL_PACKAGE_PATH="`echo "${TCL_PACKAGE_PATH}" | sed 's@ *$''@@' | awk '{ print [$]1 }'`"
else
TCL_PACKAGE_PATH='${libdir}'
fi
AC_SUBST(TCL_PACKAGE_PATH)
AC_SUBST(LIBS)
])
|