-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
46 lines (41 loc) · 1.23 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
dnl
dnl autoconf input file for ``rrep''
dnl
dnl Copyright (C) 2011, 2013, 2022 Arno Onken <asnelt@asnelt.org>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation; either version 3, or (at your option)
dnl any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
dnl 02110-1301, USA.
AC_INIT([rrep], [1.3.7], [asnelt@asnelt.org])
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_SRCDIR(src/rrep.c)
AM_INIT_AUTOMAKE([-Wall])
AC_CONFIG_HEADERS([config.h])
dnl Checks for programs.
AC_CANONICAL_HOST
AC_PROG_INSTALL
AC_PROG_CC
dnl For gnulib.
gl_EARLY
gl_INIT
AM_GNU_GETTEXT_VERSION([0.21])
AM_GNU_GETTEXT([external])
AC_CONFIG_FILES([
Makefile
lib/Makefile
src/Makefile
po/Makefile.in
doc/Makefile
])
AC_OUTPUT