forked from githwxi/ATS-Postiats
-
Notifications
You must be signed in to change notification settings - Fork 3
/
configure.ac
104 lines (92 loc) · 4.32 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
dnl = ***********************************************************************
dnl =
dnl = Applied Type System
dnl =
dnl = ***********************************************************************
dnl =
dnl = ATS/Postiats - Unleashing the Potential of Types!
dnl = Copyright (C) 2011-2014 Hongwei Xi, ATS Trustful Software, Inc.
dnl = All rights reserved
dnl =
dnl = ATS is free software; you can redistribute it and/or modify it under
dnl = the terms of the GNU GENERAL PUBLIC LICENSE (GPL) as published by the
dnl = Free Software Foundation; either version 3, or (at your option) any
dnl = later version.
dnl =
dnl = ATS is distributed in the hope that it will be useful, but WITHOUT ANY
dnl = WARRANTY; without even the implied warranty of MERCHANTABILITY or
dnl = FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
dnl = for more details.
dnl =
dnl = You should have received a copy of the GNU General Public License
dnl = along with ATS; see the file COPYING. If not, please write to the
dnl = Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
dnl = 02110-1301, USA.
dnl =
dnl =
dnl = Author: Hongwei Xi
dnl = Authoremail: gmhwxi AT gmail DOT com
dnl = Start time: August, 2013
dnl =
dnl = beg of [configure.ac]
dnl = Autoconf requirements
dnl = AC_INIT(package, version, bug-report-address)
dnl = information on the package
dnl = checks for programs
dnl = checks for libraries
dnl = checks for header files
dnl = checks for types
dnl = checks for structures
dnl = checks for compiler characteristics
dnl = checks for library functions
dnl = checks for system services
dnl = AC_CONFIG_FILES([file...])
AC_INIT([ATS2/Postiats], [0.2.8], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.2.7], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.2.6], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.2.5], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.2.4], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.2.3], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.2.2], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.2.1], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.2.0], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.13], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.12], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.11], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.10], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.9], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.8], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.7], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.6], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.5], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.4], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.3], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.2], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.1], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.1.0], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.0.8], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.0.7], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.0.6], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.0.5], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.0.4], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.0.3], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.0.2], [[email protected]])
dnl = AC_INIT([ATS2/Postiats], [0.0.1], [[email protected]])
dnl = VERSION may have a trailing newline
dnl = AC_INIT([ATS2/Postiats], m4_esyscmd([cat VERSION | tr -d '\n']), [[email protected]])
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_FILES([config.mk])
AC_CONFIG_FILES([bin/patscc_env.sh])
AC_CONFIG_FILES([bin/patsopt_env.sh])
dnl = AM_INIT_AUTOMAKE
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MKDIR_P
AC_PROG_LN_S
AC_CHECK_HEADERS(gmp.h)
AC_SUBST(HAVE_LIBGMP, ${ac_cv_header_gmp_h%no})
AC_CHECK_SIZEOF(void*)
AC_CHECK_FUNCS(posix_memalign memalign)
AC_OUTPUT
dnl = end of [configure.ac]