OSDN Git Service

Initial commit for new package.
[mingw/wtklite.git] / configure.ac
1 # configure.ac
2 #
3   AC_INIT([wtk],[0.1.0],[http://mingw.org/Reporting_Bugs])
4 #
5 # Implementation of a minimal C++ class framework for use with the
6 # Microsoft Windows Application Programming Interface.
7 #
8 # $Id$
9 #
10 # Written by Keith Marshall <keithmarshall@users.sourceforge.net>
11 # Copyright (C) 2012, MinGW.org Project.
12 #
13 # ---------------------------------------------------------------------------
14 #
15 # Permission is hereby granted, free of charge, to any person obtaining a
16 # copy of this software and associated documentation files (the "Software"),
17 # to deal in the Software without restriction, including without limitation
18 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
19 # and/or sell copies of the Software, and to permit persons to whom the
20 # Software is furnished to do so, subject to the following conditions:
21 #
22 # The above copyright notice and this permission notice shall be included
23 # in all copies or substantial portions of the Software.
24 #
25 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
26 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
28 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
31 # DEALINGS IN THE SOFTWARE.
32 #
33 # ---------------------------------------------------------------------------
34 #
35   AC_PREFIX_DEFAULT([/mingw])
36
37 # Identify compiler.
38 #
39   AC_PROG_CXX
40
41 # Identify other tools.
42 #
43   AC_PROG_MKDIR_P
44   AC_CHECK_TOOL([AR],[ar],[ar])
45   AC_SUBST([ARFLAGS],[${ARFLAGS-"rcs"}])
46   AC_PROG_INSTALL
47
48 # Create Makefile.
49 #
50   AC_CONFIG_FILES([Makefile])
51   AC_OUTPUT
52 #
53 # $RCSfile$: end of file