]> sourceware.org Git - newlib-cygwin.git/blame - winsup/lsaauth/configure.ac
* Merge in cygwin-64bit-branch.
[newlib-cygwin.git] / winsup / lsaauth / configure.ac
CommitLineData
8e4735df
CV
1dnl Copyright (c) 2006, Red Hat, Inc.
2dnl
3dnl This program is free software; you can redistribute it and/or modify
4dnl it under the terms of the GNU General Public License as published by
5dnl the Free Software Foundation; either version 2 of the License, or
6dnl (at your option) any later version.
7dnl
8dnl A copy of the GNU General Public License can be found at
9dnl http://www.gnu.org/
10dnl
11dnl Written by Christopher Faylor <cgf@redhat.com>
12dnl Changed for lsa subdir by Corinna Vinschen <corinna@vinschen.de>
13
14dnl Autoconf configure script for Cygwin utilities.
15dnl
16dnl Process this file with autoconf to produce a configure script.
17
18AC_PREREQ(2.59)
19AC_INIT(Makefile.in)
20
21AC_CONFIG_AUX_DIR(../..)
22
02fbb3bb 23AC_NO_EXECUTABLES
8e4735df
CV
24AC_CANONICAL_SYSTEM
25
26LIB_AC_PROG_CC
27
61522196
CV
28case "$target_cpu" in
29i?86)
30 AC_CHECK_PROGS(MINGW32_CC, i686-w64-mingw32-gcc)
31 test -z "$MINGW32_CC" && AC_MSG_ERROR([no acceptable mingw32 cc found in \$PATH])
32 ;;
33esac
4941ce49 34
61522196 35AC_CHECK_PROGS(MINGW64_CC, x86_64-w64-mingw32-gcc)
efa82614 36test -z "$MINGW64_CC" && AC_MSG_ERROR([no acceptable mingw64 cc found in \$PATH])
8e4735df 37
efa82614 38AC_ARG_PROGRAM
8e4735df
CV
39
40AC_PROG_INSTALL
41
42AC_OUTPUT(Makefile cyglsa.def:cyglsa.din)
This page took 0.136793 seconds and 5 git commands to generate.