]> sourceware.org Git - newlib-cygwin.git/blob - winsup/utils/configure.ac
Replace AC_CANONICAL_SYSTEM with AC_CANONICAL_TARGET, fix AC_INIT usage
[newlib-cygwin.git] / winsup / utils / configure.ac
1 dnl Autoconf configure script for Cygwin utilities.
2 dnl Copyright 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2006, 2008, 2012, 2013,
3 dnl 2014 Red Hat, Inc.
4 dnl
5 dnl This file is part of Cygwin.
6 dnl
7 dnl This software is a copyrighted work licensed under the terms of the
8 dnl Cygwin license. Please consult the file "CYGWIN_LICENSE" for
9 dnl details.
10
11 dnl Process this file with autoconf to produce a configure script.
12
13 AC_PREREQ(2.59)
14 AC_INIT([Cygwin Utils], 0,
15 cygwin@cygwin.com, cygwin, https://cygwin.com)
16 AC_CONFIG_SRCDIR(mount.cc)
17 AC_CONFIG_AUX_DIR(../..)
18
19 AC_NO_EXECUTABLES
20
21 . ${srcdir}/../configure.cygwin
22
23 AC_CANONICAL_TARGET
24
25 AC_PROG_CC
26
27 AC_WINDOWS_HEADERS
28 AC_WINDOWS_LIBS
29
30 AC_PROG_CXX
31
32 AC_CYGWIN_INCLUDES
33
34 AC_ARG_PROGRAM
35
36 AC_PROG_INSTALL
37
38 AC_CHECK_PROGS(MINGW_CXX, ${target_cpu}-w64-mingw32-g++)
39 test -n "$MINGW_CXX" || AC_MSG_ERROR([no acceptable mingw g++ found in \$PATH])
40
41 AC_EXEEXT
42 AC_CONFIGURE_ARGS
43 AC_OUTPUT(Makefile)
This page took 0.042845 seconds and 5 git commands to generate.