dnl This file is used as input to autoconf to generate configure. dnl The only reason we need this is that the Tcl directory structure dnl changed in 7.5, and this change lets us avoid changing the dnl configuration superstructure. dnl Tom Tromey AC_PREREQ(2.5) AC_INIT(generic/tcl.h) AC_CANONICAL_HOST case "${host}" in *cygwin*) CONFIGDIR="win" AC_SUBST(CONFIGDIR) CONFIGDIR2="cygwin" AC_SUBST(CONFIGDIR2) ;; *mingw32* | *windows32*) CONFIGDIR="win" AC_SUBST(CONFIGDIR) ;; *) CONFIGDIR="unix" AC_SUBST(CONFIGDIR) AC_CONFIG_AUX_DIR($CONFIGDIR) ;; esac AC_PROG_MAKE_SET # Convert --enable-shared-tcl-tk to --enable-shared for the subdir ac_configure_args=`echo "$ac_configure_args" | sed "s,--enable-shared-tcl-tk,--enable-shared,g"` AC_CONFIG_SUBDIRS($CONFIGDIR $CONFIGDIR2) AC_OUTPUT(Makefile)