blob: 28014ecfb4eed42e309f10262b858f6b855ef01b [file] [log] [blame]
Uwe Hermanna190e972011-12-30 10:42:39 +01001##
Uwe Hermann50bd5d22013-04-23 22:27:20 +02002## This file is part of the libsigrokdecode project.
Uwe Hermanna190e972011-12-30 10:42:39 +01003##
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
Uwe Hermann066ecda2012-01-28 21:26:56 +010020# We require at least autoconf 2.63 (AC_INIT format changed there).
21AC_PREREQ([2.63])
Uwe Hermanna190e972011-12-30 10:42:39 +010022
Uwe Hermanna101c522012-01-04 00:44:02 +010023# libsigrokdecode package version number (NOT the same as shared lib version!).
Uwe Hermann14b42da2012-03-31 11:31:14 +020024m4_define([srd_package_version_major], [0])
Uwe Hermann95e2b2f2014-05-06 23:05:28 +020025m4_define([srd_package_version_minor], [3])
Bert Vermeulen10b38512013-05-03 11:20:06 +020026m4_define([srd_package_version_micro], [0])
Uwe Hermann14b42da2012-03-31 11:31:14 +020027m4_define([srd_package_version], [srd_package_version_major.srd_package_version_minor.srd_package_version_micro])
Uwe Hermanna190e972011-12-30 10:42:39 +010028
Uwe Hermann14b42da2012-03-31 11:31:14 +020029AC_INIT([libsigrokdecode], [srd_package_version],
Uwe Hermann2891e1b2011-12-30 10:50:00 +010030 [sigrok-devel@lists.sourceforge.net], [libsigrokdecode],
31 [http://www.sigrok.org])
Uwe Hermanna190e972011-12-30 10:42:39 +010032AC_CONFIG_HEADER([config.h])
Uwe Hermann087d1332012-01-03 21:55:48 +010033AC_CONFIG_MACRO_DIR([autostuff])
34AC_CONFIG_AUX_DIR([autostuff])
Uwe Hermanna190e972011-12-30 10:42:39 +010035
Uwe Hermann066ecda2012-01-28 21:26:56 +010036# We require at least automake 1.11 (needed for 'silent rules').
Uwe Hermann20e950f2014-04-09 21:06:27 +020037AM_INIT_AUTOMAKE([1.11 -Wall -Werror subdir-objects check-news color-tests])
Uwe Hermanna190e972011-12-30 10:42:39 +010038m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
Pekka Nikanderbdd820e2012-05-11 19:23:21 +030039m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
Uwe Hermanna190e972011-12-30 10:42:39 +010040
Uwe Hermann14b42da2012-03-31 11:31:14 +020041AH_TOP([#ifndef SRD_CONFIG_H
42#define SRD_CONFIG_H /* To stop multiple inclusions. */])
43AH_BOTTOM([#endif /* SRD_CONFIG_H */])
Uwe Hermanna190e972011-12-30 10:42:39 +010044
Uwe Hermann4bd77042012-12-28 17:12:19 +010045# 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.
Uwe Hermann11bd6312014-08-16 18:43:51 +020047AM_CFLAGS="$AM_CFLAGS -Wall -Wextra -Wmissing-prototypes -fvisibility=hidden"
Uwe Hermanna190e972011-12-30 10:42:39 +010048
49# Checks for programs.
Uwe Hermanna190e972011-12-30 10:42:39 +010050AC_PROG_CC
51AC_PROG_CPP
52AC_PROG_INSTALL
53AC_PROG_LN_S
54
Uwe Hermann7529cda2013-10-16 19:37:44 +020055# Required for per-target flags or subdir-objects with C sources.
56AM_PROG_CC_C_O
57
Uwe Hermanna190e972011-12-30 10:42:39 +010058# 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
Uwe Hermanna101c522012-01-04 00:44:02 +010065# Library version for libsigrokdecode (NOT the same as the package version).
Uwe Hermanna190e972011-12-30 10:42:39 +010066# 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
Uwe Hermann60bc3a82014-05-06 23:03:10 +020069SRD_LIB_VERSION_CURRENT=2
Bert Vermeulen10b38512013-05-03 11:20:06 +020070SRD_LIB_VERSION_REVISION=0
Uwe Hermann14b42da2012-03-31 11:31:14 +020071SRD_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)
Uwe Hermanna190e972011-12-30 10:42:39 +010079
Uwe Hermanna190e972011-12-30 10:42:39 +010080# Checks for libraries.
81
Uwe Hermanna190e972011-12-30 10:42:39 +010082# libglib-2.0 is always needed.
Uwe Hermann2891e1b2011-12-30 10:50:00 +010083# Note: glib-2.0 is part of the libsigrokdecode API
84# (hard pkg-config requirement).
Uwe Hermann7560e162013-01-19 16:38:46 +010085AM_PATH_GLIB_2_0([2.24.0],
Uwe Hermann11bd6312014-08-16 18:43:51 +020086 [AM_CFLAGS="$AM_CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
Uwe Hermanna190e972011-12-30 10:42:39 +010087
Uwe Hermann91c78792014-01-17 17:56:08 +010088# Python 3 is always needed.
89# Note: We need to try a few different variants, since some systems have a
90# python3.pc file, others have a python-3.3.pc file, and so on.
Abhishek Kumar888bbe32014-05-09 06:05:00 +070091# We also export the name of the package so that it can be correctly
92# added to libsigrokdecode.pc.
Uwe Hermann91c78792014-01-17 17:56:08 +010093# See also: http://sigrok.org/wiki/Libsigrokdecode/Python
Uwe Hermanna190e972011-12-30 10:42:39 +010094CPPFLAGS_PYTHON=""
95LDFLAGS_PYTHON=""
Uwe Hermanna5077802014-04-05 13:00:59 +020096pyver="none"
Bert Vermeulen1ced2b02014-03-20 16:42:18 +010097PKG_CHECK_MODULES([python3], [python3 >= 3.2],
Uwe Hermanna5077802014-04-05 13:00:59 +020098 [pyver=`$PKG_CONFIG --modversion python3`;
99 CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python3_CFLAGS";
Abhishek Kumar888bbe32014-05-09 06:05:00 +0700100 LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python3_LIBS";
101 MODNAME_PYTHON="python3"],
Bert Vermeulendea61db2014-04-24 14:12:49 +0200102[PKG_CHECK_MODULES([python34], [python-3.4 >= 3.4],
103 [pyver=`$PKG_CONFIG --modversion python-3.4`;
104 CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python34_CFLAGS";
Abhishek Kumar888bbe32014-05-09 06:05:00 +0700105 LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python34_LIBS";
106 MODNAME_PYTHON="python-3.4"],
Bert Vermeulendea61db2014-04-24 14:12:49 +0200107[PKG_CHECK_MODULES([python33], [python-3.3 >= 3.3],
Uwe Hermanna5077802014-04-05 13:00:59 +0200108 [pyver=`$PKG_CONFIG --modversion python-3.3`;
109 CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python33_CFLAGS";
Abhishek Kumar888bbe32014-05-09 06:05:00 +0700110 LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python33_LIBS";
111 MODNAME_PYTHON="python-3.3"],
Bert Vermeulen1ced2b02014-03-20 16:42:18 +0100112[PKG_CHECK_MODULES([python32], [python-3.2 >= 3.2],
Uwe Hermanna5077802014-04-05 13:00:59 +0200113 [pyver=`$PKG_CONFIG --modversion python-3.2`;
114 CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python32_CFLAGS";
Abhishek Kumar888bbe32014-05-09 06:05:00 +0700115 LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python32_LIBS";
116 MODNAME_PYTHON="python-3.2"],
Bert Vermeulendea61db2014-04-24 14:12:49 +0200117)])])])
Uwe Hermanna190e972011-12-30 10:42:39 +0100118AC_SUBST(CPPFLAGS_PYTHON)
119AC_SUBST(LDFLAGS_PYTHON)
Abhishek Kumar888bbe32014-05-09 06:05:00 +0700120AC_SUBST(MODNAME_PYTHON)
Uwe Hermanna190e972011-12-30 10:42:39 +0100121
Uwe Hermann1c0dbcc2014-05-04 22:17:03 +0200122# We also need to find the name of the python3 executable (for 'make install').
123# Some OSes call this python3, some call it python3.2, etc. etc.
124AC_CHECK_PROGS([PYTHON3], [python3.4 python3.3 python3.2 python3])
Mike Frysinger3b776f32014-06-14 01:54:10 -0400125if test "x$PYTHON3" = "x"; then
Uwe Hermann1c0dbcc2014-05-04 22:17:03 +0200126 AC_MSG_ERROR([cannot find python3 executable.])
127fi
128
Uwe Hermann6af04d52014-01-03 17:41:24 +0100129# Link against libm, this is required (among other things) by Python.
130AC_SEARCH_LIBS([pow], [m])
131
Uwe Hermann7529cda2013-10-16 19:37:44 +0200132# The Check unit testing framework is optional. Disable if not found.
133PKG_CHECK_MODULES([check], [check >= 0.9.4],
Mike Frysinger4e891b92014-06-14 01:54:11 -0400134 [have_check="yes"], [have_check="no"])
Uwe Hermann7529cda2013-10-16 19:37:44 +0200135AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
136
Uwe Hermanna190e972011-12-30 10:42:39 +0100137# Checks for header files.
138# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
Uwe Hermanna190e972011-12-30 10:42:39 +0100139
Uwe Hermann066e65a2012-01-03 20:08:18 +0100140AC_SUBST(DECODERS_DIR, "$datadir/libsigrokdecode/decoders")
Uwe Hermanna190e972011-12-30 10:42:39 +0100141AC_SUBST(MAKEFLAGS, '--no-print-directory')
142AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
143
Uwe Hermann14b42da2012-03-31 11:31:14 +0200144SRD_PACKAGE_VERSION_MAJOR=srd_package_version_major
145SRD_PACKAGE_VERSION_MINOR=srd_package_version_minor
146SRD_PACKAGE_VERSION_MICRO=srd_package_version_micro
147SRD_PACKAGE_VERSION=srd_package_version
Uwe Hermanna190e972011-12-30 10:42:39 +0100148
Uwe Hermann14b42da2012-03-31 11:31:14 +0200149AC_SUBST(SRD_PACKAGE_VERSION_MAJOR)
150AC_SUBST(SRD_PACKAGE_VERSION_MINOR)
151AC_SUBST(SRD_PACKAGE_VERSION_MICRO)
152AC_SUBST(SRD_PACKAGE_VERSION)
Uwe Hermanna190e972011-12-30 10:42:39 +0100153
Uwe Hermann11bd6312014-08-16 18:43:51 +0200154AC_SUBST(AM_CFLAGS)
155
Uwe Hermann20e950f2014-04-09 21:06:27 +0200156AC_CONFIG_FILES([Makefile version.h libsigrokdecode.pc])
Uwe Hermanna190e972011-12-30 10:42:39 +0100157
158AC_OUTPUT
159
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100160echo
161echo "libsigrokdecode configuration summary:"
162echo
Uwe Hermann14b42da2012-03-31 11:31:14 +0200163echo " - Package version (major.minor.micro): $SRD_PACKAGE_VERSION"
164echo " - Library version (current:revision:age): $SRD_LIB_VERSION"
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100165echo " - Prefix: $prefix"
Uwe Hermanncab2b4e2013-04-15 12:21:04 +0200166echo " - Building on: $build"
167echo " - Building for: $host"
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100168echo
169echo "Detected libraries:"
170echo
171
Uwe Hermanna5077802014-04-05 13:00:59 +0200172if test "x$pyver" = "xnone"; then
173 echo " - (REQUIRED) python >= 3.2: no"
174else
175 echo " - (REQUIRED) python >= 3.2: yes ($pyver)"
176fi
177
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100178# Note: This only works for libs with pkg-config integration.
Uwe Hermannc414f192014-09-01 17:38:09 +0200179for lib in "glib-2.0 >= 2.24.0" "check >= 0.9.4"; do
Uwe Hermanna5077802014-04-05 13:00:59 +0200180 optional="OPTIONAL"
181 if test "x$lib" = "xglib-2.0 >= 2.24.0"; then optional="REQUIRED"; fi
182 if `$PKG_CONFIG --exists $lib`; then
183 ver=`$PKG_CONFIG --modversion $lib`
184 answer="yes ($ver)"
185 else
186 answer="no"
187 fi
188 echo " - ($optional) $lib: $answer"
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100189done
190
191echo
Uwe Hermanna5077802014-04-05 13:00:59 +0200192echo "Enabled features:"
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100193echo
Uwe Hermanna5077802014-04-05 13:00:59 +0200194echo " - (OPTIONAL) Library unit test framework support: $have_check"
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100195echo
196