OSDN Git Service

Add facility for control of child window placement.
[mingw/wtklite.git] / configure.ac
1 # configure.ac
2 #
3   AC_INIT([wtklite],[0.1.1],[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, 2013, 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, this permission notice, and the following
23 # disclaimer shall be included in all copies or substantial portions of
24 # the Software.
25 #
26 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
27 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
29 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32 # DEALINGS IN THE SOFTWARE.
33 #
34 # ---------------------------------------------------------------------------
35 #
36   AC_PREFIX_DEFAULT([/mingw])
37
38 # Identify compilers.
39 #
40   AC_PROG_CC
41   AC_PROG_CXX
42
43 # Identify other tools.
44 #
45   AC_PROG_MKDIR_P
46   AC_CHECK_TOOL([AR],[ar],[ar])
47   AC_SUBST([ARFLAGS],[${ARFLAGS-"rcs"}])
48   AC_PROG_INSTALL
49
50 # Create Makefile.
51 #
52   AC_CONFIG_FILES([Makefile])
53   AC_OUTPUT
54 #
55 # $RCSfile$: end of file