]> sigrok.org Git - libsigrokdecode.git/blame - configure.ac
irmp: introduce (part of) upstream IRMP sources
[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!).
d9a77d2e 24AC_INIT([libsigrokdecode], [0.6.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
9576e005
DE
36AC_CANONICAL_HOST
37
a190e979 38# Checks for programs.
a190e979 39AC_PROG_CC
a190e979
UH
40AC_PROG_INSTALL
41AC_PROG_LN_S
42
43426897
GS
43AC_C_CONST
44
7529cdaa
UH
45# Required for per-target flags or subdir-objects with C sources.
46AM_PROG_CC_C_O
47
fdfc532e
DE
48# Set the standard the C library headers should conform to.
49AH_VERBATIM([_POSIX_C_SOURCE], [/* The targeted POSIX standard. */
50#ifndef _POSIX_C_SOURCE
51# define _POSIX_C_SOURCE 200112L
52#endif])
53
9576e005
DE
54# Get compiler versions.
55SR_PROG_VERSION([$CC], [srd_cc_version])
56
a190e979
UH
57# Initialize libtool.
58LT_INIT
59
7eb90f23
DE
60# Set up the libsigrokdecode version defines.
61SR_PKG_VERSION_SET([SRD_PACKAGE_VERSION], [AC_PACKAGE_VERSION])
a190e979 62
a101c52f 63# Library version for libsigrokdecode (NOT the same as the package version).
a190e979
UH
64# Carefully read the libtool docs before updating these numbers!
65# The algorithm for determining which number to change (and how) is nontrivial!
66# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
b144d635 67# Format: current:revision:age.
1ac02afa 68SR_LIB_VERSION_SET([SRD_LIB_VERSION], [4:0:0])
7eb90f23 69
583001b3
DE
70AM_CONDITIONAL([WIN32], [test -z "${host_os##mingw*}" || test -z "${host_os##cygwin*}"])
71
0173a8ba
GS
72# Initialize pkg-config.
73# We require at least 0.22, as "Requires.private" behaviour changed there.
74PKG_PROG_PKG_CONFIG
75
7eb90f23
DE
76############################
77## Package dependencies ##
78############################
79
80# Initialize pkg-config.
81# We require at least 0.22, as "Requires.private" behaviour changed there.
82PKG_PROG_PKG_CONFIG([0.22])
83
84# Collect the pkg-config module names of all dependencies in SRD_PKGLIBS.
85# These are used to derive the compiler flags and for the "Requires.private"
86# field in the generated libsigrokdecode.pc file.
87SRD_PKGLIBS=
a654ef6e 88SRD_PKGLIBS_TESTS=
7eb90f23
DE
89
90# Keep track of all checked modules so we can list them at the end.
91SR_PKG_CHECK_SUMMARY([srd_pkglibs_summary])
a190e979 92
91c78794 93# Python 3 is always needed.
afae4fa6
UH
94# Starting with Python 3.8 we need to check for "python-3.8-embed"
95# first, since usually only that variant will add "-lpython3.8".
96# https://docs.python.org/3/whatsnew/3.8.html#debug-build-uses-the-same-abi-as-release-build
7eb90f23 97SR_PKG_CHECK([python3], [SRD_PKGLIBS],
afae4fa6 98 [python-3.8-embed], [python-3.8 >= 3.8], [python-3.7 >= 3.7], [python-3.6 >= 3.6], [python-3.5 >= 3.5], [python-3.4 >= 3.4], [python-3.3 >= 3.3], [python-3.2 >= 3.2], [python3 >= 3.2])
7eb90f23
DE
99AS_IF([test "x$sr_have_python3" = xno],
100 [AC_MSG_ERROR([Cannot find Python 3 development headers.])])
a190e979 101
1c0dbcc9
UH
102# We also need to find the name of the python3 executable (for 'make install').
103# Some OSes call this python3, some call it python3.2, etc. etc.
7eb90f23 104AC_ARG_VAR([PYTHON3], [Python 3 interpreter])
afae4fa6 105AC_CHECK_PROGS([PYTHON3], [python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3])
7eb90f23
DE
106AS_IF([test "x$PYTHON3" = x],
107 [AC_MSG_ERROR([Cannot find Python 3 interpreter.])])
1c0dbcc9 108
7eb90f23
DE
109######################
110## Feature checks ##
111######################
112
113# Keep track of all checked modules so we can list them at the end.
114SR_PKG_CHECK_SUMMARY([srd_pkglibs_opt_summary])
6af04d5a 115
7529cdaa 116# The Check unit testing framework is optional. Disable if not found.
a654ef6e 117SR_PKG_CHECK([check], [SRD_PKGLIBS_TESTS], [check >= 0.9.4])
7eb90f23 118AM_CONDITIONAL([HAVE_CHECK], [test "x$sr_have_check" = xyes])
7529cdaa 119
7eb90f23
DE
120# Enable the C99 standard if possible, and enforce the use
121# of SRD_API to explicitly mark all public API functions.
122SRD_EXTRA_CFLAGS=
123SR_CHECK_COMPILE_FLAGS([SRD_EXTRA_CFLAGS], [C99], [-std=c99 -c99 -AC99 -qlanglvl=extc99])
124SR_CHECK_COMPILE_FLAGS([SRD_EXTRA_CFLAGS], [visibility], [-fvisibility=hidden])
a190e979 125
7eb90f23 126# Select suitable compiler warning flags.
d652ef84 127SR_ARG_ENABLE_WARNINGS([SRD_WFLAGS], [-Wall], [-Wall -Wextra -Wmissing-prototypes -Wshadow -Wformat=2 -Wno-format-nonliteral -Wfloat-equal])
a190e979 128
7eb90f23
DE
129# Link against libm, this is required (among other things) by Python.
130SRD_EXTRA_LIBS=
131SR_SEARCH_LIBS([SRD_EXTRA_LIBS], [pow], [m])
a101c52f 132
3a2086f0
DE
133AC_SYS_LARGEFILE
134
35716e66
JH
135AC_C_BIGENDIAN
136
7eb90f23
DE
137##############################
138## Finalize configuration ##
139##############################
a101c52f 140
7eb90f23 141AC_SUBST([SRD_PKGLIBS])
11bd6317 142
7eb90f23
DE
143# Retrieve the compile and link flags for all modules combined.
144# Also, bail out at this point if any module dependency is not met.
1a41642e 145PKG_CHECK_MODULES([LIBSIGROKDECODE], [glib-2.0 >= 2.34 $SRD_PKGLIBS])
a654ef6e 146PKG_CHECK_MODULES([TESTS], [$SRD_PKGLIBS_TESTS glib-2.0 $SRD_PKGLIBS])
a190e979 147
7eb90f23 148srd_glib_version=`$PKG_CONFIG --modversion glib-2.0 2>&AS_MESSAGE_LOG_FD`
a190e979 149
cdb49509
UH
150AC_DEFINE_UNQUOTED([CONF_HOST], ["$host"],
151 [The canonical host libsigrokdecode will run on.])
152
7eb90f23
DE
153AC_CONFIG_FILES([Makefile libsigrokdecode.pc])
154
155AC_OUTPUT
aa56f7ad 156
7eb90f23
DE
157cat >&AS_MESSAGE_FD <<_EOF
158
159libsigrokdecode configuration summary:
160 - Package version................. $SRD_PACKAGE_VERSION
161 - Library ABI version............. $SRD_LIB_VERSION
162 - Prefix.......................... $prefix
163 - Building on..................... $build
164 - Building for.................... $host
75ee2693 165 - Building shared / static........ $enable_shared / $enable_static
9576e005
DE
166
167Compile configuration:
a4b5d9a9 168 - C compiler...................... $CC
9576e005 169 - C compiler version.............. $srd_cc_version
a4b5d9a9 170 - C compiler flags................ $CFLAGS
7eb90f23
DE
171 - Additional C compiler flags..... $SRD_EXTRA_CFLAGS
172 - C compiler warnings............. $SRD_WFLAGS
1ec8b3ac 173 - Linker flags.................... $LDFLAGS
7eb90f23
DE
174
175Detected libraries (required):
1a41642e 176 - glib-2.0 >= 2.34................ $srd_glib_version
7eb90f23
DE
177$srd_pkglibs_summary
178Detected libraries (optional):
179$srd_pkglibs_opt_summary
180_EOF