173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
+
-
+
|
AS_IF([test $zlib_ok = no], [
AC_SUBST(ZLIB_OBJS,[\${ZLIB_OBJS}])
AC_SUBST(ZLIB_SRCS,[\${ZLIB_SRCS}])
AC_SUBST(ZLIB_INCLUDE,[-I\${ZLIB_DIR}])
])
AC_DEFINE(HAVE_ZLIB, 1, [Is there an installed zlib?])
AC_MSG_CHECKING([for ZIP filesystem in Tcl core])
AC_ARG_WITH(zipfs,
AC_HELP_STRING([--with-zipfs],
[include ZIP filesystem]),
[include ZIP filesystem in Tcl core]),
[tcl_ok=$withval], [tcl_ok=no])
AC_MSG_RESULT([$tcl_ok])
if test $tcl_ok = yes; then
AC_DEFINE(ZIPFS_IN_TCL, 1, [Include ZIP filesystem?])
fi
#--------------------------------------------------------------------
|