]> sourceware.org Git - newlib-cygwin.git/blame - winsup/configure.ac
Rename without-mingw-progs to with-cross-bootstrap
[newlib-cygwin.git] / winsup / configure.ac
CommitLineData
1fd5e000 1dnl Autoconf configure script for Cygwin.
02211f34 2dnl Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006, 2009, 2010,
8e0b17fb 3dnl 2011, 2012, 2013, 2014 Red Hat, Inc.
1fd5e000
CF
4dnl
5dnl This file is part of Cygwin.
6dnl
7dnl This software is a copyrighted work licensed under the terms of the
8dnl Cygwin license. Please consult the file "CYGWIN_LICENSE" for
9dnl details.
10dnl
11dnl Process this file with autoconf to produce a configure script.
12
cf41355a
PF
13AC_PREREQ([2.59])
14AC_INIT([Cygwin toplevel],[0],[cygwin@cygwin.com],[cygwin],[https://cygwin.com])
8e0b17fb 15AC_CONFIG_SRCDIR(Makefile.in)
4c36016b 16AC_CONFIG_AUX_DIR(..)
1fd5e000 17
4c36016b
CF
18. ${srcdir}/configure.cygwin
19
95dc8840 20AC_PROG_INSTALL
4c36016b 21AC_NO_EXECUTABLES
cf41355a 22AC_CANONICAL_TARGET
1fd5e000 23
4c36016b
CF
24AC_PROG_CC
25AC_PROG_CXX
26AC_PROG_CPP
27AC_LANG(C)
e7e61192 28AC_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])
2a6d6db8
CF
29
30AC_WINDOWS_HEADERS
e7e61192
PF
31if test "x$with_cross_bootstrap" != "xyes"; then
32 AC_WINDOWS_LIBS
33fi
2a6d6db8 34
4c36016b 35AC_LANG(C++)
99fc5e10 36
4c36016b 37AC_CYGWIN_INCLUDES
7e5d0e9f 38
cf41355a 39AC_CONFIG_SUBDIRS(cygwin cygserver doc)
e7e61192 40if test "x$with_cross_bootstrap" != "xyes"; then
cf41355a
PF
41 AC_CONFIG_SUBDIRS([utils lsaauth])
42fi
43
4c36016b 44INSTALL_LICENSE="install-license"
2e6d8441 45
7e5d0e9f
CV
46AC_SUBST(INSTALL_LICENSE)
47
1fd5e000
CF
48AC_PROG_MAKE_SET
49
cf41355a
PF
50AC_CONFIG_FILES([Makefile])
51AC_OUTPUT
This page took 0.269335 seconds and 5 git commands to generate.