]> git.tuebingen.mpg.de Git - misma.git/blob - configure.ac
Fix seconds_to_human().
[misma.git] / configure.ac
1 # SPDX-License-Identifier: GPL-2.0+
2
3 AC_PREREQ([2.61])
4 # only for configure -h, see Makefile
5 AC_INIT([software], [packages])
6 AC_CONFIG_HEADERS([config.h])
7 AC_CONFIG_FILES([config.mak])
8 AC_USE_SYSTEM_EXTENSIONS
9 AC_PROG_CC
10 AC_PROG_CPP
11
12 AC_DEFUN([LOPSUB_NOT_FOUND], [
13 The lopsub library is required to build this software, but the checks
14 indicate it is not installed on your system.  Run the following
15 command to download a copy.
16         git clone git://git.tuebingen.mpg.de/lopsub.git
17 Install the library, then run this configure script again.
18
19 If you installed lopsub at a non-standard location, make sure to set
20 PATH, CPPFLAGS and LDFLAGS accordingly. For example:
21
22         pfx=/prefix/where/lopsub/is/installed
23         export PATH=\$pfx/bin:\$PATH
24         export CPPFLAGS=-I\$pfx/include
25         export LDFLAGS=-L\$pfx/lib
26 ])
27
28 AC_DEFUN([REQUIRE_EXECUTABLE], [
29         AC_PATH_PROG(m4_toupper([$1]), [$1])
30         test -z "$m4_toupper([$1])" && AC_MSG_ERROR([$2])
31 ])
32 REQUIRE_EXECUTABLE([lopsubgen], [LOPSUB_NOT_FOUND])
33 REQUIRE_EXECUTABLE([m4], [m4 is required to build this package])
34
35 HAVE_LOPSUB=yes
36 AC_CHECK_HEADER(lopsub.h, [], [HAVE_LOPSUB=no])
37 AC_CHECK_LIB([lopsub], [lls_merge], [], [HAVE_LOPSUB=no])
38 if test $HAVE_LOPSUB = no; then AC_MSG_ERROR([LOPSUB_NOT_FOUND()]); fi
39 AC_OUTPUT