]> sigrok.org Git - libsigrokflow.git/blame - configure.ac
Fix the build wrt gstreamermm-1.0.
[libsigrokflow.git] / configure.ac
CommitLineData
dbfaa548
UH
1##
2## This file is part of the libsigrokflow project.
3##
4## Copyright (C) 2018 Uwe Hermann <uwe@hermann-uwe.de>
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([libsigrokflow], [0.1.0],
24 [sigrok-devel@lists.sourceforge.net],
25 [libsigrokflow], [http://www.sigrok.org])
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 nostdinc subdir-objects check-news color-tests])
32AM_SILENT_RULES([yes])
33m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
34
35AC_CANONICAL_HOST
36
37# Checks for programs.
38AC_PROG_CXX
39AC_PROG_INSTALL
40AC_PROG_LN_S
41
42# Get compiler versions.
43SR_PROG_VERSION([$CXX], [srf_cxx_version])
44
45# Check for optional make features.
46SR_PROG_MAKE_ORDER_ONLY
47
48# Initialize libtool.
49LT_INIT
50
51# Set up the libsigrokflow version defines.
52SR_PKG_VERSION_SET([SRF_PACKAGE_VERSION], [AC_PACKAGE_VERSION])
53
54# Library version for libsigrokflow (NOT the same as the package version).
55# Carefully read the libtool docs before updating these numbers!
56# The algorithm for determining which number to change (and how) is nontrivial!
57# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
58# Format: current:revision:age.
59SR_LIB_VERSION_SET([SRF_LIB_VERSION], [0:0:0])
60
61# Initialize pkg-config.
62# We require at least 0.22, as "Requires.private" behaviour changed there.
63PKG_PROG_PKG_CONFIG([0.22])
64
65AC_LANG([C++])
66SR_ARG_ENABLE_WARNINGS([SRF_WXXFLAGS], [-Wall], [-Wall -Wextra])
67
68# Check if the C++ compiler supports the C++11 standard.
69AX_CXX_COMPILE_STDCXX([11], [noext], [mandatory])
70
71##############################
72## Finalize configuration ##
73##############################
74
81c16ddc
UH
75# Add mandatory dependencies to module list.
76SR_APPEND([SRF_PKGLIBS], ['gstreamermm-1.0 >= 1.8.0'])
77AC_SUBST([SRF_PKGLIBS])
78
79# Retrieve the compile and link flags for all modules combined.
80# Also, bail out at this point if any module dependency is not met.
81PKG_CHECK_MODULES([LIBSIGROKFLOW], [$SRF_PKGLIBS])
82
83srf_gstreamermm_version=`$PKG_CONFIG --modversion gstreamermm-1.0 2>&AS_MESSAGE_LOG_FD`
84
dbfaa548
UH
85AC_CONFIG_FILES([Makefile libsigrokflow.pc])
86
87AC_OUTPUT
88
89cat >&AS_MESSAGE_FD <<_EOF
90
91libsigrokflow configuration summary:
92 - Package version................. $SRF_PACKAGE_VERSION
93 - Library ABI version............. $SRF_LIB_VERSION
94 - Prefix.......................... $prefix
95 - Building on..................... $build
96 - Building for.................... $host
97 - Building shared / static........ $enable_shared / $enable_static
98
99Compile configuration:
100 - C++ compiler.................... $CXX
101 - C++ compiler version............ $srf_cxx_version
102 - C++ compiler flags.............. $CXXFLAGS
103 - C++ compiler warnings........... $SRF_WXXFLAGS
104 - Linker flags.................... $LDFLAGS
105
7fc14c7d 106Detected libraries (required):
81c16ddc 107 - gstreamermm >= 1.8.0 ........... $srf_gstreamermm_version
7fc14c7d 108
dbfaa548 109_EOF