OSDN Git Service

Updated to tk 8.4.1
[pf3gnuchains/sourceware.git] / tk / configure.in
1 dnl This file is used as input to autoconf to generate configure.
2 dnl The only reason we need this is that the Tk directory structure
3 dnl changed in 7.5, and this change lets us avoid changing the
4 dnl configuration superstructure.
5 dnl Tom Tromey <tromey@cygnus.com>
6
7 AC_PREREQ(2.5)
8
9 AC_INIT(generic/tk.h)
10
11 AC_CANONICAL_HOST
12
13 case "${host}" in
14 *cygwin* | *mingw32* | *windows32*)
15         CONFIGDIR="win"
16         AC_SUBST(CONFIGDIR)
17         ;;
18 *)
19         CONFIGDIR="unix"
20         AC_SUBST(CONFIGDIR)
21         AC_CONFIG_AUX_DIR($CONFIGDIR)   
22         ;;
23 esac
24
25 AC_PROG_MAKE_SET
26 AC_CONFIG_SUBDIRS($CONFIGDIR)
27 AC_OUTPUT(Makefile)
28