]> sourceware.org Git - newlib-cygwin.git/blame - winsup/configure.in
* configure.in: Detect "cross-hosting" situation and add a subset of
[newlib-cygwin.git] / winsup / configure.in
CommitLineData
1fd5e000
CF
1dnl Autoconf configure script for Cygwin.
2dnl Copyright 1996, 1997, 1998 Cygnus Solutions.
3dnl
4dnl This file is part of Cygwin.
5dnl
6dnl This software is a copyrighted work licensed under the terms of the
7dnl Cygwin license. Please consult the file "CYGWIN_LICENSE" for
8dnl details.
9dnl
10dnl Process this file with autoconf to produce a configure script.
11
12AC_PREREQ(2.12)dnl
13AC_INIT(Makefile.in)
14
15dnl FIXME: We temporarily define our own version of AC_PROG_CC. This is
16dnl copied from autoconf 2.12, but does not call AC_PROG_CC_WORKS. We
17dnl are probably using a cross compiler, which will not be able to fully
18dnl link an executable. This should really be fixed in autoconf
19dnl itself.
20
21AC_DEFUN(LIB_AC_PROG_CC,
22[AC_BEFORE([$0], [AC_PROG_CPP])dnl
23AC_CHECK_TOOL(CC, gcc, gcc)
24if test -z "$CC"; then
25 AC_CHECK_PROG(CC, cc, cc, , , /usr/ucb/cc)
26 test -z "$CC" && AC_MSG_ERROR([no acceptable cc found in \$PATH])
27fi
28
29AC_PROG_CC_GNU
30
31if test $ac_cv_prog_gcc = yes; then
32 GCC=yes
33dnl Check whether -g works, even if CFLAGS is set, in case the package
34dnl plays around with CFLAGS (such as to build both debugging and
35dnl normal versions of a library), tasteless as that idea is.
36 ac_test_CFLAGS="${CFLAGS+set}"
37 ac_save_CFLAGS="$CFLAGS"
38 CFLAGS=
39 AC_PROG_CC_G
40 if test "$ac_test_CFLAGS" = set; then
41 CFLAGS="$ac_save_CFLAGS"
42 elif test $ac_cv_prog_cc_g = yes; then
43 CFLAGS="-g -O2"
44 else
45 CFLAGS="-O2"
46 fi
47 if test "$ac_test_CXXFLAGS" != set; then
48 CXXFLAGS='$(CFLAGS)'
49 fi
50else
51 GCC=
52 test "${CFLAGS+set}" = set || CFLAGS="-g"
53fi
54])
55
56AC_CANONICAL_SYSTEM
57
58LIB_AC_PROG_CC
59
2e6d8441
CF
60SUBDIRS='cygwin w32api mingw'
61case "$with_cross_host" in
62 ""|*cygwin*)
63 SUBDIRS="$SUBDIRS utils"
64 test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall"
65 SUBDIRS="$SUBDIRS doc"
66 ;;
67esac
68
1fd5e000 69AC_CONFIG_SUBDIRS($SUBDIRS)
2e6d8441 70
1fd5e000
CF
71AC_PROG_MAKE_SET
72
73AC_SUBST(SUBDIRS)
74AC_OUTPUT(Makefile)
This page took 0.033094 seconds and 5 git commands to generate.