]> sourceware.org Git - newlib-cygwin.git/blame - winsup/cygserver/configure.ac
Cygwin: Drop do-nothing install_host target
[newlib-cygwin.git] / winsup / cygserver / configure.ac
CommitLineData
7e46c0af 1dnl Autoconf configure script for Cygserver.
c57452c8
CF
2dnl
3dnl This file is part of Cygwin.
4dnl
5dnl This software is a copyrighted work licensed under the terms of the
6dnl Cygwin license. Please consult the file "CYGWIN_LICENSE" for
7dnl details.
8dnl
9dnl Process this file with autoconf to produce a configure script.
10
e7e61192 11AC_PREREQ([2.59])
6436024c 12AC_INIT([Cygwin Cygserver],[0],[cygwin@cygwin.com],[cygwin],[https://cygwin.com])
7e46c0af 13AC_CONFIG_SRCDIR(cygserver.cc)
4c36016b 14AC_CONFIG_AUX_DIR(..)
c57452c8 15
4c36016b 16. ${srcdir}/../configure.cygwin
99fc5e10 17
c57452c8 18AC_PROG_INSTALL
4c36016b 19AC_NO_EXECUTABLES
6436024c 20AC_CANONICAL_TARGET
c57452c8 21
4c36016b
CF
22AC_PROG_CC
23AC_PROG_CXX
24AC_PROG_CPP
25AC_LANG(C)
26AC_LANG(C++)
27
28AC_CYGWIN_INCLUDES
c57452c8
CF
29
30case "$with_cross_host" in
31 ""|*cygwin*)
32 all_host="all_host"
c57452c8
CF
33 ;;
34 *)
35 all_host=
c57452c8
CF
36 ;;
37esac
38
39AC_SUBST(all_host)
c57452c8
CF
40
41AC_CHECK_TOOL(AR, ar, ar)
42AC_CHECK_TOOL(AS, as, as)
43AC_CHECK_TOOL(RANLIB, ranlib, ranlib)
44AC_CHECK_TOOL(LD, ld, ld)
45AC_CHECK_TOOL(NM, nm, nm)
46AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool)
47AC_CHECK_TOOL(WINDRES, windres, windres)
48
c57452c8
CF
49AC_ARG_ENABLE(debugging,
50[ --enable-debugging Build a cygwin DLL which has more consistency checking for debugging],
51[case "${enableval}" in
52yes) AC_DEFINE(DEBUGGING) ;;
53no) ;;
54esac
55])
56
4c36016b 57AC_CONFIGURE_ARGS
e7e61192
PF
58AC_CONFIG_FILES([Makefile])
59AC_OUTPUT
This page took 0.199453 seconds and 5 git commands to generate.