]> sigrok.org Git - libsigrokdecode.git/blame_incremental - configure.ac
configure.ac: Check for all known Python3 pkg-config names.
[libsigrokdecode.git] / configure.ac
... / ...
CommitLineData
1##
2## This file is part of the libsigrokdecode 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
23# libsigrokdecode package version number (NOT the same as shared lib version!).
24m4_define([srd_package_version_major], [0])
25m4_define([srd_package_version_minor], [2])
26m4_define([srd_package_version_micro], [0])
27m4_define([srd_package_version], [srd_package_version_major.srd_package_version_minor.srd_package_version_micro])
28
29AC_INIT([libsigrokdecode], [srd_package_version],
30 [sigrok-devel@lists.sourceforge.net], [libsigrokdecode],
31 [http://www.sigrok.org])
32AC_CONFIG_HEADER([config.h])
33AC_CONFIG_MACRO_DIR([autostuff])
34AC_CONFIG_AUX_DIR([autostuff])
35
36# We require at least automake 1.11 (needed for 'silent rules').
37AM_INIT_AUTOMAKE([1.11 -Wall -Werror check-news color-tests])
38m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
39m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
40
41AH_TOP([#ifndef SRD_CONFIG_H
42#define SRD_CONFIG_H /* To stop multiple inclusions. */])
43AH_BOTTOM([#endif /* SRD_CONFIG_H */])
44
45# Enable more compiler warnings via -Wall and -Wextra. Add -fvisibility=hidden
46# and enforce use of SRD_API to explicitly mark all public API functions.
47CFLAGS="$CFLAGS -Wall -Wextra -fvisibility=hidden"
48
49# Checks for programs.
50AC_PROG_CC
51AC_PROG_CPP
52AC_PROG_INSTALL
53AC_PROG_LN_S
54
55# Required for per-target flags or subdir-objects with C sources.
56AM_PROG_CC_C_O
57
58# Initialize libtool.
59LT_INIT
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
65# Library version for libsigrokdecode (NOT the same as the package version).
66# Carefully read the libtool docs before updating these numbers!
67# The algorithm for determining which number to change (and how) is nontrivial!
68# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
69SRD_LIB_VERSION_CURRENT=1
70SRD_LIB_VERSION_REVISION=0
71SRD_LIB_VERSION_AGE=0
72SRD_LIB_VERSION="$SRD_LIB_VERSION_CURRENT:$SRD_LIB_VERSION_REVISION:$SRD_LIB_VERSION_AGE"
73SRD_LIB_LDFLAGS="-version-info $SRD_LIB_VERSION"
74AC_SUBST(SRD_LIB_VERSION_CURRENT)
75AC_SUBST(SRD_LIB_VERSION_REVISION)
76AC_SUBST(SRD_LIB_VERSION_AGE)
77AC_SUBST(SRD_LIB_VERSION)
78AC_SUBST(SRD_LIB_LDFLAGS)
79
80# assume we can build tests/runtc unless proven otherwise
81build_runtc="yes"
82
83# Checks for libraries.
84
85# libglib-2.0 is always needed.
86# Note: glib-2.0 is part of the libsigrokdecode API
87# (hard pkg-config requirement).
88AM_PATH_GLIB_2_0([2.24.0],
89 [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
90
91# Python 3 is always needed.
92# Note: We need to try a few different variants, since some systems have a
93# python3.pc file, others have a python-3.3.pc file, and so on.
94# See also: http://sigrok.org/wiki/Libsigrokdecode/Python
95CPPFLAGS_PYTHON=""
96LDFLAGS_PYTHON=""
97PKG_CHECK_MODULES([python3], [python3 >= 3.0],
98 [CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python3_CFLAGS";
99 LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python3_LIBS"],
100[PKG_CHECK_MODULES([python33], [python-3.3 >= 3.0],
101 [CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python33_CFLAGS";
102 LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python33_LIBS"],
103[PKG_CHECK_MODULES([python32], [python-3.2 >= 3.0],
104 [CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python32_CFLAGS";
105 LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python32_LIBS"],
106[PKG_CHECK_MODULES([python31], [python-3.1 >= 3.0],
107 [CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python31_CFLAGS";
108 LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python31_LIBS"],
109[PKG_CHECK_MODULES([python30], [python-3.0 >= 3.0],
110 [CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python30_CFLAGS";
111 LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python30_LIBS"],
112)])])])])
113case "$build" in
114*mingw*)
115 # We currently hardcode the paths to the Python 3.2 default install
116 # location as there's no 'python-config' script on Windows, it seems.
117 # Note: We add both the /c/ and c:/ syntax (needed for cmake).
118 AC_MSG_WARN([using hardcoded Python3 configuration on MinGW])
119 CPPFLAGS_PYTHON="-I/c/Python32/include -Ic:/Python32/include"
120 LDFLAGS_PYTHON="-L/c/Python32/libs -Lc:/Python32/libs -lpython32"
121 ;;
122esac
123AC_SUBST(CPPFLAGS_PYTHON)
124AC_SUBST(LDFLAGS_PYTHON)
125
126# Link against libm, this is required (among other things) by Python.
127AC_SEARCH_LIBS([pow], [m])
128
129# The Check unit testing framework is optional. Disable if not found.
130PKG_CHECK_MODULES([check], [check >= 0.9.4],
131 [have_check="yes"; CFLAGS="$CFLAGS $check_CFLAGS";
132 LIBS="$LIBS $check_LIBS"], [have_check="no"])
133AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
134
135# libsigrok is optional (only used for the protocol decoder test framework).
136# Disable if not found.
137PKG_CHECK_MODULES([libsigrok], [libsigrok >= 0.2.0],
138 [LIBSIGROK_CFLAGS="$libsigrok_CFLAGS"; LIBSIGROK_LIBS="$libsigrok_LIBS"],
139 [build_runtc="no"])
140AC_SUBST([LIBSIGROK_CFLAGS])
141AC_SUBST([LIBSIGROK_LIBS])
142
143# Checks for header files.
144# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
145AC_CHECK_HEADER([sys/resource.h], [], [build_runtc="no"])
146
147# Checks for typedefs, structures, and compiler characteristics.
148AC_C_INLINE
149AC_TYPE_INT8_T
150AC_TYPE_INT16_T
151AC_TYPE_INT32_T
152AC_TYPE_INT64_T
153AC_TYPE_UINT8_T
154AC_TYPE_UINT16_T
155AC_TYPE_UINT32_T
156AC_TYPE_UINT64_T
157AC_TYPE_SIZE_T
158
159# Checks for library functions.
160AC_CHECK_FUNCS([memset strtoull])
161
162AC_SUBST(DECODERS_DIR, "$datadir/libsigrokdecode/decoders")
163AC_SUBST(MAKEFLAGS, '--no-print-directory')
164AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
165
166SRD_PACKAGE_VERSION_MAJOR=srd_package_version_major
167SRD_PACKAGE_VERSION_MINOR=srd_package_version_minor
168SRD_PACKAGE_VERSION_MICRO=srd_package_version_micro
169SRD_PACKAGE_VERSION=srd_package_version
170
171AC_SUBST(SRD_PACKAGE_VERSION_MAJOR)
172AC_SUBST(SRD_PACKAGE_VERSION_MINOR)
173AC_SUBST(SRD_PACKAGE_VERSION_MICRO)
174AC_SUBST(SRD_PACKAGE_VERSION)
175
176AM_CONDITIONAL(BUILD_RUNTC, test x"$build_runtc" = "xyes")
177
178AC_CONFIG_FILES([Makefile
179 version.h
180 libsigrokdecode.pc
181 contrib/Makefile
182 tests/Makefile
183 ])
184
185AC_OUTPUT
186
187echo
188echo "libsigrokdecode configuration summary:"
189echo
190echo " - Package version (major.minor.micro): $SRD_PACKAGE_VERSION"
191echo " - Library version (current:revision:age): $SRD_LIB_VERSION"
192echo " - Prefix: $prefix"
193echo " - Building on: $build"
194echo " - Building for: $host"
195echo " - Building protocol decoder test framework: $build_runtc"
196echo
197echo "Detected libraries:"
198echo
199
200# Note: This only works for libs with pkg-config integration.
201for lib in "glib-2.0 >= 2.24.0" "check >= 0.9.4" "libsigrok >= 0.2.0"; do
202 if `$PKG_CONFIG --exists $lib`; then
203 ver=`$PKG_CONFIG --modversion $lib`
204 answer="yes ($ver)"
205 else
206 answer="no"
207 fi
208 echo " - $lib: $answer"
209done
210
211echo
212echo "Detected Python:"
213echo
214echo " - Python CPPFLAGS: $CPPFLAGS_PYTHON"
215echo " - Python LDFLAGS: $LDFLAGS_PYTHON"
216echo
217