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
|
# configure.ac
#
# FileTea, low-friction file sharing <http://filetea.net>
#
# Copyright (C) 2011-2013, Igalia S.L.
#
# Authors:
# Eduardo Lima Mitev <elima@igalia.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Affero General Public License
# version 3, or (at your option) any later version as published by
# the Free Software Foundation.
#
# This program 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
# Affero General Public License at http://www.gnu.org/licenses/agpl.html
# for more details.
AC_PREREQ(2.59)
m4_define([prj_name], [FileTea])
m4_define([prj_short_name], [filetea])
m4_define([prj_home], [http://filetea.com])
m4_define([prj_version_major], [0])
m4_define([prj_version_minor], [1])
m4_define([prj_version_micro], [18])
m4_define([prj_version],
[prj_version_major.prj_version_minor.prj_version_micro])
AC_INIT([prj_name],
[prj_version],
[prj_home])
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE
# Check for programs
AC_PROG_LIBTOOL
AC_PROG_CC
AC_PROG_INSTALL
AM_PROG_CC_C_O
# Enable pkg-config
PKG_PROG_PKG_CONFIG
# Required libraries
PKG_CHECK_MODULES(JSON, json-glib-1.0 >= 0.10.0)
PKG_CHECK_MODULES(EVD, evd-0.2 >= 0.2.0)
PKG_CHECK_MODULES(UUID, uuid)
# Silent build
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
# Tests
AC_ARG_ENABLE(tests,
AS_HELP_STRING([--enable-tests[=@<:@no/yes@:>@]],
[Enable automated unit and functional tests [default=yes]]),,
[enable_tests=yes])
AM_CONDITIONAL(ENABLE_TESTS, test x"${enable_tests}" = x"yes")
# Debug
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--enable-debug[=@<:@no/yes@:>@]],
[Enable debug mode by adding -ggdb, -g3, -O0 and -Werror to CFLAGS [default=no]]),,
[enable_debug=no])
AM_CONDITIONAL(ENABLE_DEBUG, test x"${enable_debug}" = x"yes")
# Output files
AC_OUTPUT([
Makefile
filetea/Makefile
html/Makefile
])
echo ""
echo " prj_name $VERSION"
echo " ========================="
echo ""
echo " Install prefix: ${prefix}"
echo " Enable automated tests: ${enable_tests}"
echo ""
|