aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: d89ad2ee9c1d09ed7df857cbcff2338d16ceca34 (plain)
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
# This file is part of BEAM -*- autoconf -*-
# Copyright (C) 2012, 2013 Sergey Poznyakoff
#
# BEAM is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# BEAM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with BEAM.  If not, see <http://www.gnu.org/licenses/>.

AC_PREREQ(2.63)

AC_INIT(beam, 1.4, gray@gnu.org.ua)
AC_CONFIG_SRCDIR(backup.in)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.11 tar-ustar silent-rules])

# Enable silent rules by default:
AM_SILENT_RULES([yes])

AC_ARG_WITH([s3],
            AC_HELP_STRING([--with-s3],
	                   [use s3 utilities]),
            [s3_status=$withval])
AM_CONDITIONAL([COND_S3MOUNT],[test "$s3_status"=yes])	    

AC_OUTPUT(Makefile
          lib/Makefile
          lib/beam/Makefile
	  doc/Makefile)

Return to:

Send suggestions and report system problems to the System administrator.