OSDN Git Service

Adjust repository version following WSL-5.3.1 release.
[mingw/mingw-org-wsl.git] / configure.ac
1 # configure.ac -*- Autoconf -*- vim: filetype=config
2 #
3 # Process this file with autoconf, to create a configure script for
4 # the composite MinGW.org Runtime Library and Win32-API packages.
5 #
6 # $Id$
7 #
8 # Written by Keith Marshall <keithmarshall@users.sourceforge.net>
9 # Copyright (C) 2016, 2019, MinGW.org Project
10 #
11 #
12 # Permission is hereby granted, free of charge, to any person obtaining a
13 # copy of this software and associated documentation files (the "Software"),
14 # to deal in the Software without restriction, including without limitation
15 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 # and/or sell copies of the Software, and to permit persons to whom the
17 # Software is furnished to do so, subject to the following conditions:
18 #
19 # The above copyright notice and this permission notice (including the next
20 # paragraph) shall be included in all copies or substantial portions of the
21 # Software.
22 #
23 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26 # AUTHORS OR THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29 # DEALINGS IN THE SOFTWARE.
30 #
31   AC_PREREQ([2.64])
32   AC_INIT([MinGW System Libraries],[__VERSION__],[__BUG_REPORT_URL__],[wsl])
33   AC_PREFIX_DEFAULT([/mingw])
34
35   AC_PROG_MKDIR_P
36   AC_PATH_PROG([LN],[ln],[ln])
37   AC_PATH_PROG([LUA],[lua])
38
39   AC_CONFIG_SUBDIRS([mingwrt w32api])
40   AC_CONFIG_FILES([Makefile])
41   AC_OUTPUT
42 #
43 # $RCSfile$: end of file