]> git.sur5r.net Git - i3/i3status/blob - configure.ac
fix: use SYSCONFDIR in error message
[i3/i3status] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Run autoreconf -fi to generate a configure script from this file.
3
4 AC_PREREQ([2.69])
5 AC_INIT([i3status], [2.12], [https://github.com/i3/i3status/issues])
6 # For AX_EXTEND_SRCDIR
7 AX_ENABLE_BUILDDIR
8 AM_INIT_AUTOMAKE([foreign subdir-objects -Wall no-dist-gzip dist-bzip2])
9 # Default to silent rules, use V=1 to get verbose compilation output.
10 AM_SILENT_RULES([yes])
11 # Make it possible to disable maintainer mode to disable re-generation of build
12 # system files.
13 AM_MAINTAINER_MODE([enable])
14 AC_CONFIG_SRCDIR([i3status.c])
15 AC_CONFIG_HEADERS([config.h])
16 AC_CONFIG_MACRO_DIR([m4])
17
18 dnl Verify macros defined in m4/ such as AX_SANITIZERS are not present in the
19 dnl output, i.e. are replaced as expected. This line results in a better error
20 dnl message when using aclocal < 1.13 (which does not understand
21 dnl AC_CONFIG_MACRO_DIR) without passing the -I m4 parameter.
22 m4_pattern_forbid([AX_SANITIZERS])
23
24 # Verify we are using GNU make because we use '%'-style pattern rules in
25 # Makefile.am, which are a GNU make extension. Pull requests to replace
26 # '%'-style pattern rules with a more portable alternative are welcome.
27 AX_CHECK_GNU_MAKE
28 AS_VAR_IF([_cv_gnu_make_command], [""], [AC_MSG_ERROR([the i3status Makefile.am requires GNU make])])
29
30 AX_EXTEND_SRCDIR
31
32 AS_IF([test -d ${srcdir}/.git],
33       [
34         VERSION="$(git -C ${srcdir} describe --tags --abbrev=0)"
35         I3STATUS_VERSION="$(git -C ${srcdir} describe --tags --always) ($(git -C ${srcdir} log --pretty=format:%cd --date=short -n1), branch \\\"$(git -C ${srcdir} describe --tags --always --all | sed s:heads/::)\\\")"
36         # Mirrors what libi3/is_debug_build.c does:
37         is_release=$(test $(echo "${I3STATUS_VERSION}" | cut -d '(' -f 1 | wc -m) -lt 10 && echo yes || echo no)
38       ],
39       [
40         VERSION="$(cut -d '-' -f 1 ${srcdir}/I3STATUS_VERSION | cut -d ' ' -f 1)"
41         I3STATUS_VERSION="$(sed -e 's/@<:@\"?\\@:>@/\\&/g' ${srcdir}/I3STATUS_VERSION)"
42         is_release="$(grep -q non-git ${srcdir}/I3STATUS_VERSION && echo no || echo yes)"
43       ])
44 AC_SUBST([I3STATUS_VERSION], [$I3STATUS_VERSION])
45 AC_DEFINE_UNQUOTED([I3STATUS_VERSION], ["${I3STATUS_VERSION}"], [i3status version])
46
47 AX_CODE_COVERAGE
48
49 dnl is_release must be lowercase because AX_CHECK_ENABLE_DEBUG calls m4_tolower
50 dnl on its fourth argument.
51 AX_CHECK_ENABLE_DEBUG([yes], , [UNUSED_NDEBUG], [$is_release])
52
53 AC_PROG_CC_C99
54
55 # For strnlen() and vasprintf().
56 AC_USE_SYSTEM_EXTENSIONS
57
58 # Checks for typedefs, structures, and compiler characteristics.
59 AC_CHECK_HEADER_STDBOOL
60 dnl The error message should include the specific type which could not be
61 dnl found, but I do not see a way to achieve that.
62 AC_CHECK_TYPES([mode_t, off_t, pid_t, size_t, ssize_t], , [AC_MSG_FAILURE([cannot find required type])])
63
64 # Checks for library functions.
65 AC_FUNC_FORK
66 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
67 AC_FUNC_STRNLEN
68 AC_CHECK_FUNCS([atexit dup2 ftruncate getcwd gettimeofday localtime_r memchr memset mkdir rmdir setlocale socket strcasecmp strchr strdup strerror strncasecmp strndup strrchr strspn strstr strtol strtoul], , [AC_MSG_FAILURE([cannot find the $ac_func function, which i3status requires])])
69
70 # Checks for libraries.
71
72 AX_PTHREAD
73
74 AC_SEARCH_LIBS([floor], [m], , [AC_MSG_FAILURE([cannot find the required floor() function despite trying to link with -lm])])
75
76 AC_SEARCH_LIBS([shm_open], [rt])
77
78 AC_CANONICAL_HOST
79
80 PKG_CHECK_MODULES([CONFUSE], [libconfuse])
81 PKG_CHECK_MODULES([YAJL], [yajl])
82
83 case $host_os in
84         linux*)
85         PKG_CHECK_MODULES([NLGENL], [libnl-genl-3.0])
86         PKG_CHECK_MODULES([ALSA], [alsa])
87         PKG_CHECK_MODULES([PULSE], [libpulse])
88         ;;
89         netbsd*)
90         AC_SEARCH_LIBS([prop_string_create], [prop])
91         ;;
92 esac
93
94 dnl TODO: check for libbsd for GNU/kFreeBSD
95
96 # Checks for programs.
97 AC_PROG_AWK
98 AC_PROG_CPP
99 AC_PROG_INSTALL
100 AC_PROG_MAKE_SET
101 AC_PROG_RANLIB
102 AC_PROG_LN_S
103
104 AC_PATH_PROG([PATH_ASCIIDOC], [asciidoc])
105 AC_PATH_PROG([PATH_XMLTO], [xmlto])
106
107 AM_PROG_AR
108
109 AX_FLAGS_WARN_ALL
110 AX_CHECK_COMPILE_FLAG([-Wunused-value], [AX_APPEND_FLAG([-Wunused-value], [AM_CFLAGS])])
111 AC_SUBST(AM_CFLAGS)
112
113 # Checks for header files.
114 AC_CHECK_HEADERS([fcntl.h float.h inttypes.h limits.h locale.h netinet/in.h paths.h stddef.h stdint.h stdlib.h string.h sys/param.h sys/socket.h sys/time.h unistd.h], , [AC_MSG_FAILURE([cannot find the $ac_header header, which i3status requires])])
115
116 AC_CONFIG_FILES([Makefile man/asciidoc.conf])
117 AC_CONFIG_FILES([travis/run-tests.pl], [chmod +x travis/run-tests.pl])
118
119 # Enable address sanitizer for non-release builds. The performance hit is a
120 # 50% increase of wallclock time for the testsuite on my machine.
121 if test x$is_release = xyes; then
122         default_sanitizers=
123 else
124         default_sanitizers=address
125 fi
126 AX_SANITIZERS(, [$default_sanitizers], [AC_DEFINE([I3STATUS_ASAN_ENABLED], [], [Enable ASAN])])
127
128 AC_OUTPUT
129
130 in_git_worktree=`git rev-parse --is-inside-work-tree 2>/dev/null`
131 if [ "$in_git_worktree" = "true" ]; then
132         git_dir=`git rev-parse --git-dir 2>/dev/null`
133         srcdir=`dirname "$git_dir"`
134         exclude_dir=`pwd | sed "s,^$srcdir,,g"`
135         if ! grep -q "^$exclude_dir" "$git_dir/info/exclude"; then
136                 echo "$exclude_dir" >> "$git_dir/info/exclude"
137         fi
138 fi
139
140 echo \
141 "--------------------------------------------------------------------------------
142 build configured:
143
144 AS_HELP_STRING([i3status version:], [`echo ${I3STATUS_VERSION} | sed 's,\\\\,,g'`])
145 AS_HELP_STRING([is release version:], [${is_release}])
146
147 AS_HELP_STRING([enable debug flags:], [${ax_enable_debug}])
148 AS_HELP_STRING([code coverage:], [${CODE_COVERAGE_ENABLED}])
149 AS_HELP_STRING([enabled sanitizers:], [${ax_enabled_sanitizers}])
150
151 To compile, run:
152
153   cd `pwd` && make -j8
154 --------------------------------------------------------------------------------"