2000-02-18 03:38:33 +08: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 21:34:10 +08:00
AC_PREREQ([2.59])
AC_INIT([Cygwin toplevel],[0],[cygwin@cygwin.com],[cygwin],[https://cygwin.com])
2014-11-13 20:12:56 +08:00
AC_CONFIG_SRCDIR(Makefile.in)
2012-11-23 21:22:47 +08:00
AC_CONFIG_AUX_DIR(..)
2000-02-18 03:38:33 +08:00
2012-11-23 21:22:47 +08:00
. ${srcdir}/configure.cygwin
2006-01-17 01:48:36 +08:00
AC_PROG_INSTALL
2012-11-23 21:22:47 +08:00
AC_NO_EXECUTABLES
2016-03-23 21:34:10 +08:00
AC_CANONICAL_TARGET
2000-02-18 03:38:33 +08:00
2012-11-23 21:22:47 +08:00
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CPP
AC_LANG(C)
2016-04-02 22:56:44 +08: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 08:19:52 +08:00
AC_WINDOWS_HEADERS
2016-04-02 22:56:44 +08:00
if test "x$with_cross_bootstrap" != "xyes"; then
AC_WINDOWS_LIBS
fi
2013-11-07 08:19:52 +08:00
2012-11-23 21:22:47 +08:00
AC_LANG(C++)
2006-05-25 00:59:03 +08:00
2012-11-23 21:22:47 +08:00
AC_CYGWIN_INCLUDES
2006-08-30 21:05:46 +08:00
2016-03-23 21:34:10 +08:00
AC_CONFIG_SUBDIRS(cygwin cygserver doc)
2016-04-02 22:56:44 +08:00
if test "x$with_cross_bootstrap" != "xyes"; then
2016-03-23 21:34:10 +08:00
AC_CONFIG_SUBDIRS([utils lsaauth])
fi
2012-11-23 21:22:47 +08:00
INSTALL_LICENSE="install-license"
2000-06-18 01:51:31 +08:00
2006-08-30 21:05:46 +08:00
AC_SUBST(INSTALL_LICENSE)
2000-02-18 03:38:33 +08:00
AC_PROG_MAKE_SET
2016-03-23 21:34:10 +08:00
AC_CONFIG_FILES([Makefile])
AC_OUTPUT