2000-02-17 20:38:33 +01:00
dnl Autoconf configure script for Cygwin.
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.
2016-03-23 14:34:10 +01:00
AC_PREREQ([2.59])
AC_INIT([Cygwin toplevel],[0],[cygwin@cygwin.com],[cygwin],[https://cygwin.com])
2014-11-13 13:12:56 +01:00
AC_CONFIG_SRCDIR(Makefile.in)
2012-11-23 14:22:47 +01:00
AC_CONFIG_AUX_DIR(..)
2000-02-17 20:38:33 +01:00
2012-11-23 14:22:47 +01:00
. ${srcdir}/configure.cygwin
2006-01-16 18:48:36 +01:00
AC_PROG_INSTALL
2012-11-23 14:22:47 +01:00
AC_NO_EXECUTABLES
2016-03-23 14:34:10 +01:00
AC_CANONICAL_TARGET
2000-02-17 20:38:33 +01:00
2012-11-23 14:22:47 +01:00
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CPP
AC_LANG(C)
2016-04-02 16:56:44 +02:00
AC_ARG_WITH([cross-bootstrap],[AS_HELP_STRING([--with-cross-bootstrap],[do not build programs using the mingw toolchain or check for mingw libraries (useful for bootstrapping a cross-compiler)])],[],[with_cross_bootstrap=no])
2013-11-07 01:19:52 +01:00
AC_WINDOWS_HEADERS
2016-04-02 16:56:44 +02:00
if test "x$with_cross_bootstrap" != "xyes"; then
AC_WINDOWS_LIBS
fi
2013-11-07 01:19:52 +01:00
2012-11-23 14:22:47 +01:00
AC_LANG(C++)
2006-05-24 18:59:03 +02:00
2012-11-23 14:22:47 +01:00
AC_CYGWIN_INCLUDES
2006-08-30 15:05:46 +02:00
2016-03-23 14:34:10 +01:00
AC_CONFIG_SUBDIRS(cygwin cygserver doc)
2016-04-02 16:56:44 +02:00
if test "x$with_cross_bootstrap" != "xyes"; then
2016-03-23 14:34:10 +01:00
AC_CONFIG_SUBDIRS([utils lsaauth])
fi
2012-11-23 14:22:47 +01:00
INSTALL_LICENSE="install-license"
2000-06-17 19:51:31 +02:00
2006-08-30 15:05:46 +02:00
AC_SUBST(INSTALL_LICENSE)
2000-02-17 20:38:33 +01:00
AC_PROG_MAKE_SET
2016-03-23 14:34:10 +01:00
AC_CONFIG_FILES([Makefile])
AC_OUTPUT