Welcome to mirror list, hosted at ThFree Co, Russian Federation.

configure.in « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2eb69fe1fb3904062b3bd86ff2765a1385e3274a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
dnl Autoconf configure script for Cygwin.
dnl Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Red Hat, Inc.
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.

AC_PREREQ(2.59)dnl
AC_INIT(Makefile.in)

INSTALL=`cd $srcdir/..; echo $(pwd)/install-sh -c`

AC_PROG_INSTALL
AC_CANONICAL_SYSTEM

LIB_AC_PROG_CC
LIB_AC_PROG_CXX

AC_LANG_C

use_cygserver='yes'
AC_ARG_ENABLE(server,
[ --enable-server		Build a cygwin DLL which can communicate with cygserver],
[case "${enableval}" in
yes)	;;
no)	use_cygserver=;;
esac
])

AC_CONFIG_SUBDIRS(cygwin w32api)
if test -d $srcdir/mingw; then
  AC_CONFIG_SUBDIRS(mingw)
fi

case "$with_cross_host" in
  ""|*cygwin*)
    # if test -d $srcdir/bz2lib; then
    #  AC_CONFIG_SUBDIRS(bz2lib)
    # fi
    # if test -d $srcdir/zlib; then
    #   AC_CONFIG_SUBDIRS(zlib)
    # fi
    if test -d $srcdir/subauth; then
      AC_CONFIG_SUBDIRS(subauth)
    fi
    if test -n "$use_cygserver" -a -d $srcdir/cygserver; then
      AC_CONFIG_SUBDIRS(cygserver)
    fi
    AC_CONFIG_SUBDIRS(utils doc)
    ;;
esac

AC_PROG_MAKE_SET

AC_OUTPUT(Makefile)