]> sigrok.org Git - sigrok-cli.git/blame_incremental - configure.ac
Build: Adopt modernized Autotools build system
[sigrok-cli.git] / configure.ac
... / ...
CommitLineData
1##
2## This file is part of the sigrok-cli project.
3##
4## Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
5##
6## This program is free software: you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation, either version 3 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program. If not, see <http://www.gnu.org/licenses/>.
18##
19
20# We require at least autoconf 2.63 (AC_INIT format changed there).
21AC_PREREQ([2.63])
22
23AC_INIT([sigrok-cli], [0.6.0], [sigrok-devel@lists.sourceforge.net],
24 [sigrok-cli], [http://www.sigrok.org])
25AC_CONFIG_SRCDIR([sigrok-cli.h])
26AC_CONFIG_MACRO_DIR([m4])
27AC_CONFIG_AUX_DIR([autostuff])
28AC_CONFIG_HEADERS([config.h])
29
30# We require at least automake 1.11 (needed for 'silent rules').
31AM_INIT_AUTOMAKE([1.11 -Wall -Werror no-define std-options check-news])
32AM_SILENT_RULES([yes])
33
34AH_TOP([#ifndef SIGROK_CLI_CONFIG_H
35#define SIGROK_CLI_CONFIG_H /* To stop multiple inclusions. */])
36AH_BOTTOM([#endif /* SIGROK_CLI_CONFIG_H */])
37
38AC_CANONICAL_HOST
39
40# Checks for programs.
41AC_PROG_CC
42AC_PROG_INSTALL
43
44# Get compiler versions.
45SR_PROG_VERSION([$CC], [sc_cc_version])
46
47# Set up the sigrok-cli version defines.
48SR_PKG_VERSION_SET([SC_PACKAGE_VERSION], [AC_PACKAGE_VERSION])
49
50#############################
51## Optional dependencies ##
52#############################
53
54# Initialize pkg-config.
55# We require at least 0.22, as "Requires.private" behaviour changed there.
56PKG_PROG_PKG_CONFIG([0.22])
57
58# Keep track of all checked modules so we can list them at the end.
59SR_PKG_CHECK_SUMMARY([sc_pkglibs_summary])
60
61# Collect the pkg-config module names of all dependencies.
62SR_VAR_OPT_PKG([SC_PKGLIBS])
63
64SR_ARG_OPT_PKG([libsigrokdecode], [SRD],,
65 [libsigrokdecode >= 0.4.0])
66
67######################
68## Feature checks ##
69######################
70
71AC_LANG([C])
72
73# Enable the C99 standard if possible.
74SC_EXTRA_CFLAGS=
75SR_CHECK_COMPILE_FLAGS([SC_EXTRA_CFLAGS], [C99],
76 [-std=c99 -c99 -AC99 -qlanglvl=extc99])
77
78SR_ARG_ENABLE_WARNINGS([SC_WFLAGS], [-Wall], [-Wall -Wextra])
79
80# Check host characteristics.
81AC_SYS_LARGEFILE
82
83##############################
84## Finalize configuration ##
85##############################
86
87# Retrieve the compile and link flags for all modules combined.
88# Also, bail out at this point if any module dependency is not met.
89PKG_CHECK_MODULES([SIGROK_CLI],
90 [glib-2.0 >= 2.28.0 libsigrok >= 0.4.0 $SC_PKGLIBS])
91
92sc_glib_version=`$PKG_CONFIG --modversion glib-2.0 2>&AS_MESSAGE_LOG_FD`
93sc_libsigrok_version=`$PKG_CONFIG --modversion libsigrok 2>&AS_MESSAGE_LOG_FD`
94
95AC_CONFIG_FILES([Makefile contrib/sigrok-cli_cross.nsi])
96
97AC_OUTPUT
98
99cat >&AS_MESSAGE_FD <<_EOF
100
101sigrok-cli configuration summary:
102 - Package version................. $SC_PACKAGE_VERSION
103 - Prefix.......................... $prefix
104 - Building on..................... $build
105 - Building for.................... $host
106
107Compile configuration:
108 - C compiler...................... $CC
109 - C compiler version.............. $sc_cc_version
110 - C compiler flags................ $CFLAGS
111 - Additional C compiler flags..... $SC_EXTRA_CFLAGS
112 - C compiler warnings............. $SC_WFLAGS
113
114Detected libraries (required):
115 - glib-2.0 >= 2.28.0.............. $sc_glib_version
116 - libsigrok >= 0.4.0.............. $sc_libsigrok_version
117
118Detected libraries (optional):
119$sc_pkglibs_summary
120_EOF