URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [insight/] [tk/] [configure.in] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
dnl This file is used as input to autoconf to generate configure.
dnl The only reason we need this is that the Tk directory structure
dnl changed in 7.5, and this change lets us avoid changing the
dnl configuration superstructure.
dnl Tom Tromey <tromey@cygnus.com>
AC_PREREQ(2.5)
AC_INIT(generic/tk.h)
AC_CANONICAL_HOST
case "${host}" in
*-*-cygwin* | *-*-mingw32*)
CONFIGDIR="win"
AC_SUBST(CONFIGDIR)
;;
*)
CONFIGDIR="unix"
AC_SUBST(CONFIGDIR)
AC_CONFIG_AUX_DIR($CONFIGDIR)
;;
esac
AC_PROG_MAKE_SET
AC_CONFIG_SUBDIRS($CONFIGDIR)
AC_OUTPUT(Makefile)
Go to most recent revision | Compare with Previous | Blame | View Log