2000-02-17 20:38:33 +01:00
|
|
|
dnl Autoconf configure script for Cygwin.
|
2009-01-21 18:14:39 +01:00
|
|
|
dnl Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006,
|
|
|
|
dnl 2009 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
dnl
|
|
|
|
dnl This file is part of Cygwin.
|
|
|
|
dnl
|
|
|
|
dnl This software is a copyrighted work licensed under the terms of the
|
|
|
|
dnl Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
dnl details.
|
|
|
|
dnl
|
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
|
2006-05-24 18:59:03 +02:00
|
|
|
AC_PREREQ(2.59)dnl
|
2000-02-17 20:38:33 +01:00
|
|
|
AC_INIT(Makefile.in)
|
|
|
|
|
2006-01-16 18:48:36 +01:00
|
|
|
INSTALL=`cd $srcdir/..; echo $(pwd)/install-sh -c`
|
|
|
|
|
|
|
|
AC_PROG_INSTALL
|
2000-02-17 20:38:33 +01:00
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
|
2006-08-30 15:05:46 +02:00
|
|
|
GCC_NO_EXECUTABLES
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
LIB_AC_PROG_CC
|
2000-12-03 06:40:45 +01:00
|
|
|
LIB_AC_PROG_CXX
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2006-05-24 18:59:03 +02:00
|
|
|
AC_LANG_C
|
|
|
|
|
2006-08-30 15:05:46 +02:00
|
|
|
INSTALL_LICENSE=
|
|
|
|
|
|
|
|
case "$target" in
|
|
|
|
*cygwin*)
|
|
|
|
if ! test -d $srcdir/cygwin; then
|
|
|
|
AC_MSG_ERROR("No cygwin dir. Can't build Cygwin. Exiting...")
|
|
|
|
fi
|
2012-10-24 12:11:15 +02:00
|
|
|
AC_CONFIG_SUBDIRS(cygwin cygserver lsaauth utils doc)
|
2006-08-30 15:05:46 +02:00
|
|
|
INSTALL_LICENSE="install-license"
|
|
|
|
;;
|
2000-06-17 19:51:31 +02:00
|
|
|
esac
|
|
|
|
|
2006-08-30 15:05:46 +02:00
|
|
|
AC_SUBST(INSTALL_LICENSE)
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
AC_PROG_MAKE_SET
|
|
|
|
|
|
|
|
AC_OUTPUT(Makefile)
|