OSDN Git Service

Add subsystem specific sysroot mapping facility.
[mingw/mingw-get.git] / configure.ac
1 # configure.ac -*- autoconf -*- vim: filetype=config
2 #
3 # $Id$
4 #
5 # Written by Keith Marshall <keithmarshall@users.sourceforge.net>
6 # Copyright (C) 2009, 2010, MinGW Project
7 #
8 #
9 # Configuration script for mingw-get
10 #
11 #
12 # This is free software.  Permission is granted to copy, modify and
13 # redistribute this software, under the provisions of the GNU General
14 # Public License, Version 3, (or, at your option, any later version),
15 # as published by the Free Software Foundation; see the file COPYING
16 # for licensing details.
17 #
18 # Note, in particular, that this software is provided "as is", in the
19 # hope that it may prove useful, but WITHOUT WARRANTY OF ANY KIND; not
20 # even an implied WARRANTY OF MERCHANTABILITY, nor of FITNESS FOR ANY
21 # PARTICULAR PURPOSE.  Under no circumstances will the author, or the
22 # MinGW Project, accept liability for any damages, however caused,
23 # arising from the use of this software.
24 #
25   AC_INIT([mingw-get],[0.1-alpha-1],[http://mingw.org/reporting_bugs])
26
27   AC_SUBST([COPYRIGHT_HOLDER],["MinGW Project"])
28   AC_SUBST([YEARS_OF_ISSUE],["2009, 2010"])
29
30 # We need both C and C++ compilers; check how to invoke them
31 #
32   AC_PROG_CC
33   AC_PROG_CXX
34
35 # We also need a lexical analyser generator
36 #
37   AC_PROG_LEX
38
39 # Set up the archive librarian, to match our compiler settings
40 #
41   AC_CHECK_TOOL([AR],[ar],[ar])
42   AC_SUBST([ARFLAGS],[${ARFLAGS-rcs}])
43
44 # Create a makefile
45 #
46   AC_CONFIG_FILES([version.c Makefile])
47   AC_OUTPUT
48 #
49 # $RCSfile$: end of file