OSDN Git Service

* cygpath.cc (main): Remove enforcing "en_US.UTF-8" locale.
[pf3gnuchains/pf3gnuchains3x.git] / itcl / configure.ac
1 dnl Process this file with autoconf to produce configure.
2
3 AC_INIT(itcl/generic/itcl.h)
4 AC_CONFIG_AUX_DIR(..)
5 AM_INIT_AUTOMAKE(itcl, 3.3)
6 AM_MAINTAINER_MODE
7 AC_CANONICAL_HOST
8
9 # Itcl et al require tclsh and wish. Since they have not been built yet,
10 # we simply set the environment variables TCLSH_PROG and WISH_PROG so that 
11 # the two TEA macros do not run.
12 case "${host}" in
13   *-*-cywin* | *-*-mingw* )
14     platform="win"
15     ;;
16   *)
17     platform="unix"
18     ;;
19 esac
20
21 export TCLSH_PROG=`pwd`/../tcl/${platform}/tclsh
22 export WISH_PROG=`pwd`/../tk/${platform}/wish
23
24 AC_CONFIG_SUBDIRS(itcl itk iwidgets)
25 AC_OUTPUT(Makefile)