Add some missing license notices
[skeinsum.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3 #
4 # This file is part of skeinsum.
5 #
6 # skeinsum is free software: you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # skeinsum is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with skeinsum. If not, see <http://www.gnu.org/licenses/>.
18
19 AC_PREREQ([2.69])
20 AC_INIT([skeinsum], m4_esyscmd_s([./version.sh]), [j@jxself.org], [], [https://jxself.org/skein.shtml])
21 AC_CONFIG_SRCDIR([skein.h])
22 AC_CONFIG_HEADERS([config.h])
23 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
24
25 # Checks for programs.
26 AC_PROG_CC
27
28 # Checks for libraries.
29
30 # Checks for header files.
31 AC_CHECK_HEADERS([limits.h malloc.h stddef.h stdlib.h string.h unistd.h errno.h])
32
33 # Checks for typedefs, structures, and compiler characteristics.
34 AC_TYPE_SIZE_T
35
36 # Checks for library functions.
37 AC_FUNC_MALLOC
38 AC_CHECK_FUNCS([memset strerror])
39
40 AC_SYS_LARGEFILE
41
42 AC_CONFIG_FILES([makefile])
43 AC_OUTPUT