]> sourceware.org Git - newlib-cygwin.git/blob - winsup/configure.ac
Cygwin: Always configure in testsuite subdirectory
[newlib-cygwin.git] / winsup / configure.ac
1 dnl Autoconf configure script for Cygwin.
2 dnl
3 dnl This file is part of Cygwin.
4 dnl
5 dnl This software is a copyrighted work licensed under the terms of the
6 dnl Cygwin license. Please consult the file "CYGWIN_LICENSE" for
7 dnl details.
8 dnl
9 dnl Process this file with autoconf to produce a configure script.
10
11 AC_PREREQ([2.59])
12 AC_INIT([Cygwin toplevel],[0],[cygwin@cygwin.com],[cygwin],[https://cygwin.com])
13 AC_CONFIG_SRCDIR(Makefile.in)
14 AC_CONFIG_AUX_DIR(..)
15
16 . ${srcdir}/configure.cygwin
17
18 AC_PROG_INSTALL
19 AC_NO_EXECUTABLES
20 AC_CANONICAL_TARGET
21
22 AC_PROG_CC
23 AC_PROG_CXX
24 AC_PROG_CPP
25 AC_LANG(C)
26 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])
27
28 AC_LANG(C++)
29
30 AC_CYGWIN_INCLUDES
31
32 AC_CONFIG_SUBDIRS(cygwin cygserver doc testsuite)
33 if test "x$with_cross_bootstrap" != "xyes"; then
34 AC_CONFIG_SUBDIRS([utils])
35 fi
36
37 AC_CONFIG_FILES([Makefile])
38 AC_OUTPUT
This page took 0.034748 seconds and 5 git commands to generate.