]> sigrok.org Git - libsigrokdecode.git/blame - configure.ac
log: Enable varargs format warnings
[libsigrokdecode.git] / configure.ac
CommitLineData
a190e979 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
a190e979
UH
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
066ecdab
UH
20# We require at least autoconf 2.63 (AC_INIT format changed there).
21AC_PREREQ([2.63])
a190e979 22
a101c52f 23# libsigrokdecode package version number (NOT the same as shared lib version!).
7eb90f23 24AC_INIT([libsigrokdecode], [0.4.0],
2891e1bc
UH
25 [sigrok-devel@lists.sourceforge.net], [libsigrokdecode],
26 [http://www.sigrok.org])
7eb90f23 27AC_CONFIG_MACRO_DIR([m4])
087d133d 28AC_CONFIG_AUX_DIR([autostuff])
7eb90f23 29AC_CONFIG_HEADERS([config.h version.h])
a190e979 30
066ecdab 31# We require at least automake 1.11 (needed for 'silent rules').
7eb90f23
DE
32AM_INIT_AUTOMAKE([1.11 -Wall -Werror no-define subdir-objects check-news color-tests])
33AM_SILENT_RULES([yes])
bdd820e3 34m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
a190e979 35
14b42dad
UH
36AH_TOP([#ifndef SRD_CONFIG_H
37#define SRD_CONFIG_H /* To stop multiple inclusions. */])
38AH_BOTTOM([#endif /* SRD_CONFIG_H */])
a190e979 39
9576e005
DE
40AC_CANONICAL_HOST
41
a190e979 42# Checks for programs.
a190e979 43AC_PROG_CC
a190e979
UH
44AC_PROG_INSTALL
45AC_PROG_LN_S
46
7529cdaa
UH
47# Required for per-target flags or subdir-objects with C sources.
48AM_PROG_CC_C_O
49
9576e005
DE
50# Get compiler versions.
51SR_PROG_VERSION([$CC], [srd_cc_version])
52
a190e979
UH
53# Initialize libtool.
54LT_INIT
55
7eb90f23
DE
56# Set up the libsigrokdecode version defines.
57SR_PKG_VERSION_SET([SRD_PACKAGE_VERSION], [AC_PACKAGE_VERSION])
a190e979 58
a101c52f 59# Library version for libsigrokdecode (NOT the same as the package version).
a190e979
UH
60# Carefully read the libtool docs before updating these numbers!
61# The algorithm for determining which number to change (and how) is nontrivial!
62# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
7eb90f23
DE
63SR_LIB_VERSION_SET([SRD_LIB_VERSION], [2:0:0])
64
65############################
66## Package dependencies ##
67############################
68
69# Initialize pkg-config.
70# We require at least 0.22, as "Requires.private" behaviour changed there.
71PKG_PROG_PKG_CONFIG([0.22])
72
73# Collect the pkg-config module names of all dependencies in SRD_PKGLIBS.
74# These are used to derive the compiler flags and for the "Requires.private"
75# field in the generated libsigrokdecode.pc file.
76SRD_PKGLIBS=
a654ef6e 77SRD_PKGLIBS_TESTS=
7eb90f23
DE
78
79# Keep track of all checked modules so we can list them at the end.
80SR_PKG_CHECK_SUMMARY([srd_pkglibs_summary])
a190e979 81
91c78794 82# Python 3 is always needed.
7eb90f23
DE
83SR_PKG_CHECK([python3], [SRD_PKGLIBS],
84 [python3 >= 3.2], [python-3.4 >= 3.4], [python-3.3 >= 3.3], [python-3.2 >= 3.2])
85AS_IF([test "x$sr_have_python3" = xno],
86 [AC_MSG_ERROR([Cannot find Python 3 development headers.])])
a190e979 87
1c0dbcc9
UH
88# We also need to find the name of the python3 executable (for 'make install').
89# Some OSes call this python3, some call it python3.2, etc. etc.
7eb90f23 90AC_ARG_VAR([PYTHON3], [Python 3 interpreter])
1c0dbcc9 91AC_CHECK_PROGS([PYTHON3], [python3.4 python3.3 python3.2 python3])
7eb90f23
DE
92AS_IF([test "x$PYTHON3" = x],
93 [AC_MSG_ERROR([Cannot find Python 3 interpreter.])])
1c0dbcc9 94
7eb90f23
DE
95######################
96## Feature checks ##
97######################
98
99# Keep track of all checked modules so we can list them at the end.
100SR_PKG_CHECK_SUMMARY([srd_pkglibs_opt_summary])
6af04d5a 101
7529cdaa 102# The Check unit testing framework is optional. Disable if not found.
a654ef6e 103SR_PKG_CHECK([check], [SRD_PKGLIBS_TESTS], [check >= 0.9.4])
7eb90f23 104AM_CONDITIONAL([HAVE_CHECK], [test "x$sr_have_check" = xyes])
7529cdaa 105
7eb90f23
DE
106# Enable the C99 standard if possible, and enforce the use
107# of SRD_API to explicitly mark all public API functions.
108SRD_EXTRA_CFLAGS=
109SR_CHECK_COMPILE_FLAGS([SRD_EXTRA_CFLAGS], [C99], [-std=c99 -c99 -AC99 -qlanglvl=extc99])
110SR_CHECK_COMPILE_FLAGS([SRD_EXTRA_CFLAGS], [visibility], [-fvisibility=hidden])
a190e979 111
7eb90f23
DE
112# Select suitable compiler warning flags.
113SR_ARG_ENABLE_WARNINGS([SRD_WFLAGS], [-Wall], [-Wall -Wextra -Wmissing-prototypes])
a190e979 114
7eb90f23
DE
115# Link against libm, this is required (among other things) by Python.
116SRD_EXTRA_LIBS=
117SR_SEARCH_LIBS([SRD_EXTRA_LIBS], [pow], [m])
a101c52f 118
3a2086f0
DE
119AC_SYS_LARGEFILE
120
7eb90f23
DE
121##############################
122## Finalize configuration ##
123##############################
a101c52f 124
7eb90f23 125AC_SUBST([SRD_PKGLIBS])
11bd6317 126
7eb90f23
DE
127# Retrieve the compile and link flags for all modules combined.
128# Also, bail out at this point if any module dependency is not met.
129PKG_CHECK_MODULES([LIBSIGROKDECODE], [glib-2.0 >= 2.24.0 $SRD_PKGLIBS])
a654ef6e 130PKG_CHECK_MODULES([TESTS], [$SRD_PKGLIBS_TESTS glib-2.0 $SRD_PKGLIBS])
a190e979 131
7eb90f23 132srd_glib_version=`$PKG_CONFIG --modversion glib-2.0 2>&AS_MESSAGE_LOG_FD`
a190e979 133
7eb90f23
DE
134AC_CONFIG_FILES([Makefile libsigrokdecode.pc])
135
136AC_OUTPUT
aa56f7ad 137
7eb90f23
DE
138cat >&AS_MESSAGE_FD <<_EOF
139
140libsigrokdecode configuration summary:
141 - Package version................. $SRD_PACKAGE_VERSION
142 - Library ABI version............. $SRD_LIB_VERSION
143 - Prefix.......................... $prefix
144 - Building on..................... $build
145 - Building for.................... $host
9576e005
DE
146
147Compile configuration:
a4b5d9a9 148 - C compiler...................... $CC
9576e005 149 - C compiler version.............. $srd_cc_version
a4b5d9a9 150 - C compiler flags................ $CFLAGS
7eb90f23
DE
151 - Additional C compiler flags..... $SRD_EXTRA_CFLAGS
152 - C compiler warnings............. $SRD_WFLAGS
153
154Detected libraries (required):
155 - glib-2.0 >= 2.24.0.............. $srd_glib_version
156$srd_pkglibs_summary
157Detected libraries (optional):
158$srd_pkglibs_opt_summary
159_EOF