blob: deedd5c697dfc82f4ad8a9354a7eddeea8332a93 [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])
Bert Vermeulen10b38512013-05-03 11:20:06 +020025m4_define([srd_package_version_minor], [2])
26m4_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 Hermann7529cda2013-10-16 19:37:44 +020037AM_INIT_AUTOMAKE([1.11 -Wall -Werror 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.
47CFLAGS="$CFLAGS -Wall -Wextra -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
Bert Vermeulen10b38512013-05-03 11:20:06 +020069SRD_LIB_VERSION_CURRENT=1
70SRD_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
Bert Vermeulen919ace12013-12-22 23:07:23 +010080# assume we can build tests/runtc unless proven otherwise
81build_runtc="yes"
82
Uwe Hermanna190e972011-12-30 10:42:39 +010083# Checks for libraries.
84
Uwe Hermanna190e972011-12-30 10:42:39 +010085# libglib-2.0 is always needed.
Uwe Hermann2891e1b2011-12-30 10:50:00 +010086# Note: glib-2.0 is part of the libsigrokdecode API
87# (hard pkg-config requirement).
Uwe Hermann7560e162013-01-19 16:38:46 +010088AM_PATH_GLIB_2_0([2.24.0],
Uwe Hermann2891e1b2011-12-30 10:50:00 +010089 [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
Uwe Hermanna190e972011-12-30 10:42:39 +010090
Uwe Hermann084f0f92012-01-02 14:23:15 +010091# Python support. We require at least Python >= 3.0.
Uwe Hermanna190e972011-12-30 10:42:39 +010092CPPFLAGS_PYTHON=""
93LDFLAGS_PYTHON=""
Marcus Comstedt7d54fe32014-01-02 12:43:34 +010094PKG_CHECK_MODULES([python3], [python3 >= 3.0],
95 [have_python3="yes"; CPPFLAGS_PYTHON="$python3_CFLAGS";
96 LDFLAGS_PYTHON="$python3_LIBS"], [have_python3="no"])
Uwe Hermanna190e972011-12-30 10:42:39 +010097case "$build" in
Uwe Hermanna190e972011-12-30 10:42:39 +010098*mingw*)
99 # We currently hardcode the paths to the Python 3.2 default install
100 # location as there's no 'python-config' script on Windows, it seems.
Uwe Hermann55e5c4e2012-10-13 15:49:09 +0200101 # Note: We add both the /c/ and c:/ syntax (needed for cmake).
Uwe Hermannb67eb0b2012-01-05 16:01:25 +0100102 AC_MSG_WARN([using hardcoded Python3 configuration on MinGW])
Uwe Hermann55e5c4e2012-10-13 15:49:09 +0200103 CPPFLAGS_PYTHON="-I/c/Python32/include -Ic:/Python32/include"
104 LDFLAGS_PYTHON="-L/c/Python32/libs -Lc:/Python32/libs -lpython32"
Uwe Hermanna190e972011-12-30 10:42:39 +0100105 ;;
106*)
Marcus Comstedt7d54fe32014-01-02 12:43:34 +0100107 if test x"$have_python3" = xno; then
108 AC_MSG_ERROR([python3 not found])
Renato Caldas631b0802012-01-05 14:27:13 +0000109 fi
Uwe Hermanna190e972011-12-30 10:42:39 +0100110 ;;
111esac
112AC_SUBST(CPPFLAGS_PYTHON)
113AC_SUBST(LDFLAGS_PYTHON)
114
Uwe Hermann7529cda2013-10-16 19:37:44 +0200115# The Check unit testing framework is optional. Disable if not found.
116PKG_CHECK_MODULES([check], [check >= 0.9.4],
117 [have_check="yes"; CFLAGS="$CFLAGS $check_CFLAGS";
118 LIBS="$LIBS $check_LIBS"], [have_check="no"])
119AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
120
Bert Vermeulen919ace12013-12-22 23:07:23 +0100121# Protocol decoder test framework
Bert Vermeulenfbd226c2013-12-10 17:17:38 +0100122PKG_CHECK_MODULES([libsigrok], [libsigrok >= 0.2.0],
Bert Vermeulen919ace12013-12-22 23:07:23 +0100123 [LIBSIGROK_CFLAGS="$libsigrok_CFLAGS"; LIBSIGROK_LIBS="$libsigrok_LIBS"],
124 [build_runtc="no"])
Bert Vermeulenf8c88eb2013-12-11 01:21:22 +0100125AC_SUBST([LIBSIGROK_CFLAGS])
126AC_SUBST([LIBSIGROK_LIBS])
Bert Vermeulenfbd226c2013-12-10 17:17:38 +0100127
Uwe Hermanna190e972011-12-30 10:42:39 +0100128# Checks for header files.
129# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
Bert Vermeulen919ace12013-12-22 23:07:23 +0100130AC_CHECK_HEADER([sys/resource.h], [], [build_runtc="no"])
Uwe Hermanna190e972011-12-30 10:42:39 +0100131
132# Checks for typedefs, structures, and compiler characteristics.
133AC_C_INLINE
134AC_TYPE_INT8_T
135AC_TYPE_INT16_T
136AC_TYPE_INT32_T
137AC_TYPE_INT64_T
138AC_TYPE_UINT8_T
139AC_TYPE_UINT16_T
140AC_TYPE_UINT32_T
141AC_TYPE_UINT64_T
142AC_TYPE_SIZE_T
143
144# Checks for library functions.
Uwe Hermann81eb8e82012-01-04 15:26:41 +0100145AC_CHECK_FUNCS([memset strtoull])
Uwe Hermanna190e972011-12-30 10:42:39 +0100146
Uwe Hermann066e65a2012-01-03 20:08:18 +0100147AC_SUBST(DECODERS_DIR, "$datadir/libsigrokdecode/decoders")
Uwe Hermanna190e972011-12-30 10:42:39 +0100148AC_SUBST(MAKEFLAGS, '--no-print-directory')
149AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
150
Uwe Hermann14b42da2012-03-31 11:31:14 +0200151SRD_PACKAGE_VERSION_MAJOR=srd_package_version_major
152SRD_PACKAGE_VERSION_MINOR=srd_package_version_minor
153SRD_PACKAGE_VERSION_MICRO=srd_package_version_micro
154SRD_PACKAGE_VERSION=srd_package_version
Uwe Hermanna190e972011-12-30 10:42:39 +0100155
Uwe Hermann14b42da2012-03-31 11:31:14 +0200156AC_SUBST(SRD_PACKAGE_VERSION_MAJOR)
157AC_SUBST(SRD_PACKAGE_VERSION_MINOR)
158AC_SUBST(SRD_PACKAGE_VERSION_MICRO)
159AC_SUBST(SRD_PACKAGE_VERSION)
Uwe Hermanna190e972011-12-30 10:42:39 +0100160
Bert Vermeulen919ace12013-12-22 23:07:23 +0100161AM_CONDITIONAL(BUILD_RUNTC, test x"$build_runtc" = "xyes")
162
Uwe Hermanna190e972011-12-30 10:42:39 +0100163AC_CONFIG_FILES([Makefile
Bert Vermeulen2b628af2013-11-15 23:37:47 +0100164 version.h
Uwe Hermann2891e1b2011-12-30 10:50:00 +0100165 libsigrokdecode.pc
Uwe Hermann5d24bb22013-02-09 21:07:53 +0100166 contrib/Makefile
Uwe Hermann7529cda2013-10-16 19:37:44 +0200167 tests/Makefile
Uwe Hermanna190e972011-12-30 10:42:39 +0100168 ])
169
170AC_OUTPUT
171
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100172echo
173echo "libsigrokdecode configuration summary:"
174echo
Uwe Hermann14b42da2012-03-31 11:31:14 +0200175echo " - Package version (major.minor.micro): $SRD_PACKAGE_VERSION"
176echo " - Library version (current:revision:age): $SRD_LIB_VERSION"
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100177echo " - Prefix: $prefix"
Uwe Hermanncab2b4e2013-04-15 12:21:04 +0200178echo " - Building on: $build"
179echo " - Building for: $host"
Bert Vermeulen919ace12013-12-22 23:07:23 +0100180echo " - Building protocol decoder test framework: $build_runtc"
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100181echo
182echo "Detected libraries:"
183echo
184
185# Note: This only works for libs with pkg-config integration.
Bert Vermeulenfbd226c2013-12-10 17:17:38 +0100186for lib in "glib-2.0 >= 2.24.0" "check >= 0.9.4" "libsigrok >= 0.2.0"; do
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100187 if `$PKG_CONFIG --exists $lib`; then
188 ver=`$PKG_CONFIG --modversion $lib`
189 answer="yes ($ver)"
190 else
191 answer="no"
192 fi
193 echo " - $lib: $answer"
194done
195
196echo
197echo "Detected Python:"
198echo
199echo " - Python CPPFLAGS: $CPPFLAGS_PYTHON"
200echo " - Python LDFLAGS: $LDFLAGS_PYTHON"
201echo
202