Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 1 | ## |
Uwe Hermann | 50bd5d2 | 2013-04-23 22:27:20 +0200 | [diff] [blame] | 2 | ## This file is part of the libsigrokdecode project. |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 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 | |
Uwe Hermann | 066ecda | 2012-01-28 21:26:56 +0100 | [diff] [blame] | 20 | # We require at least autoconf 2.63 (AC_INIT format changed there). |
| 21 | AC_PREREQ([2.63]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 22 | |
Uwe Hermann | a101c52 | 2012-01-04 00:44:02 +0100 | [diff] [blame] | 23 | # libsigrokdecode package version number (NOT the same as shared lib version!). |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 24 | m4_define([srd_package_version_major], [0]) |
Uwe Hermann | 95e2b2f | 2014-05-06 23:05:28 +0200 | [diff] [blame] | 25 | m4_define([srd_package_version_minor], [3]) |
Bert Vermeulen | 10b3851 | 2013-05-03 11:20:06 +0200 | [diff] [blame] | 26 | m4_define([srd_package_version_micro], [0]) |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 27 | m4_define([srd_package_version], [srd_package_version_major.srd_package_version_minor.srd_package_version_micro]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 28 | |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 29 | AC_INIT([libsigrokdecode], [srd_package_version], |
Uwe Hermann | 2891e1b | 2011-12-30 10:50:00 +0100 | [diff] [blame] | 30 | [sigrok-devel@lists.sourceforge.net], [libsigrokdecode], |
| 31 | [http://www.sigrok.org]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 32 | AC_CONFIG_HEADER([config.h]) |
Uwe Hermann | 087d133 | 2012-01-03 21:55:48 +0100 | [diff] [blame] | 33 | AC_CONFIG_MACRO_DIR([autostuff]) |
| 34 | AC_CONFIG_AUX_DIR([autostuff]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 35 | |
Uwe Hermann | 066ecda | 2012-01-28 21:26:56 +0100 | [diff] [blame] | 36 | # We require at least automake 1.11 (needed for 'silent rules'). |
Uwe Hermann | 20e950f | 2014-04-09 21:06:27 +0200 | [diff] [blame] | 37 | AM_INIT_AUTOMAKE([1.11 -Wall -Werror subdir-objects check-news color-tests]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 38 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
Pekka Nikander | bdd820e | 2012-05-11 19:23:21 +0300 | [diff] [blame] | 39 | m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 40 | |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 41 | AH_TOP([#ifndef SRD_CONFIG_H |
| 42 | #define SRD_CONFIG_H /* To stop multiple inclusions. */]) |
| 43 | AH_BOTTOM([#endif /* SRD_CONFIG_H */]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 44 | |
Uwe Hermann | 4bd7704 | 2012-12-28 17:12:19 +0100 | [diff] [blame] | 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. |
Uwe Hermann | cb73763 | 2014-01-30 19:28:49 +0100 | [diff] [blame] | 47 | CFLAGS="$CFLAGS -Wall -Wextra -Wmissing-prototypes -fvisibility=hidden" |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 48 | |
| 49 | # Checks for programs. |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 50 | AC_PROG_CC |
| 51 | AC_PROG_CPP |
| 52 | AC_PROG_INSTALL |
| 53 | AC_PROG_LN_S |
| 54 | |
Uwe Hermann | 7529cda | 2013-10-16 19:37:44 +0200 | [diff] [blame] | 55 | # Required for per-target flags or subdir-objects with C sources. |
| 56 | AM_PROG_CC_C_O |
| 57 | |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 58 | # Initialize libtool. |
| 59 | LT_INIT |
| 60 | |
| 61 | # Initialize pkg-config. |
| 62 | # We require at least 0.22, as "Requires.private" behaviour changed there. |
| 63 | PKG_PROG_PKG_CONFIG([0.22]) |
| 64 | |
Uwe Hermann | a101c52 | 2012-01-04 00:44:02 +0100 | [diff] [blame] | 65 | # Library version for libsigrokdecode (NOT the same as the package version). |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 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 |
Uwe Hermann | 60bc3a8 | 2014-05-06 23:03:10 +0200 | [diff] [blame] | 69 | SRD_LIB_VERSION_CURRENT=2 |
Bert Vermeulen | 10b3851 | 2013-05-03 11:20:06 +0200 | [diff] [blame] | 70 | SRD_LIB_VERSION_REVISION=0 |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 71 | SRD_LIB_VERSION_AGE=0 |
| 72 | SRD_LIB_VERSION="$SRD_LIB_VERSION_CURRENT:$SRD_LIB_VERSION_REVISION:$SRD_LIB_VERSION_AGE" |
| 73 | SRD_LIB_LDFLAGS="-version-info $SRD_LIB_VERSION" |
| 74 | AC_SUBST(SRD_LIB_VERSION_CURRENT) |
| 75 | AC_SUBST(SRD_LIB_VERSION_REVISION) |
| 76 | AC_SUBST(SRD_LIB_VERSION_AGE) |
| 77 | AC_SUBST(SRD_LIB_VERSION) |
| 78 | AC_SUBST(SRD_LIB_LDFLAGS) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 79 | |
Uwe Hermann | a507780 | 2014-04-05 13:00:59 +0200 | [diff] [blame] | 80 | # Assume we can build tests/runtc unless proven otherwise. |
Bert Vermeulen | 919ace1 | 2013-12-22 23:07:23 +0100 | [diff] [blame] | 81 | build_runtc="yes" |
| 82 | |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 83 | # Checks for libraries. |
| 84 | |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 85 | # libglib-2.0 is always needed. |
Uwe Hermann | 2891e1b | 2011-12-30 10:50:00 +0100 | [diff] [blame] | 86 | # Note: glib-2.0 is part of the libsigrokdecode API |
| 87 | # (hard pkg-config requirement). |
Uwe Hermann | 7560e16 | 2013-01-19 16:38:46 +0100 | [diff] [blame] | 88 | AM_PATH_GLIB_2_0([2.24.0], |
Uwe Hermann | 2891e1b | 2011-12-30 10:50:00 +0100 | [diff] [blame] | 89 | [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 90 | |
Uwe Hermann | 91c7879 | 2014-01-17 17:56:08 +0100 | [diff] [blame] | 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. |
Abhishek Kumar | 888bbe3 | 2014-05-09 06:05:00 +0700 | [diff] [blame^] | 94 | # We also export the name of the package so that it can be correctly |
| 95 | # added to libsigrokdecode.pc. |
Uwe Hermann | 91c7879 | 2014-01-17 17:56:08 +0100 | [diff] [blame] | 96 | # See also: http://sigrok.org/wiki/Libsigrokdecode/Python |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 97 | CPPFLAGS_PYTHON="" |
| 98 | LDFLAGS_PYTHON="" |
Uwe Hermann | a507780 | 2014-04-05 13:00:59 +0200 | [diff] [blame] | 99 | pyver="none" |
Bert Vermeulen | 1ced2b0 | 2014-03-20 16:42:18 +0100 | [diff] [blame] | 100 | PKG_CHECK_MODULES([python3], [python3 >= 3.2], |
Uwe Hermann | a507780 | 2014-04-05 13:00:59 +0200 | [diff] [blame] | 101 | [pyver=`$PKG_CONFIG --modversion python3`; |
| 102 | CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python3_CFLAGS"; |
Abhishek Kumar | 888bbe3 | 2014-05-09 06:05:00 +0700 | [diff] [blame^] | 103 | LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python3_LIBS"; |
| 104 | MODNAME_PYTHON="python3"], |
Bert Vermeulen | dea61db | 2014-04-24 14:12:49 +0200 | [diff] [blame] | 105 | [PKG_CHECK_MODULES([python34], [python-3.4 >= 3.4], |
| 106 | [pyver=`$PKG_CONFIG --modversion python-3.4`; |
| 107 | CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python34_CFLAGS"; |
Abhishek Kumar | 888bbe3 | 2014-05-09 06:05:00 +0700 | [diff] [blame^] | 108 | LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python34_LIBS"; |
| 109 | MODNAME_PYTHON="python-3.4"], |
Bert Vermeulen | dea61db | 2014-04-24 14:12:49 +0200 | [diff] [blame] | 110 | [PKG_CHECK_MODULES([python33], [python-3.3 >= 3.3], |
Uwe Hermann | a507780 | 2014-04-05 13:00:59 +0200 | [diff] [blame] | 111 | [pyver=`$PKG_CONFIG --modversion python-3.3`; |
| 112 | CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python33_CFLAGS"; |
Abhishek Kumar | 888bbe3 | 2014-05-09 06:05:00 +0700 | [diff] [blame^] | 113 | LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python33_LIBS"; |
| 114 | MODNAME_PYTHON="python-3.3"], |
Bert Vermeulen | 1ced2b0 | 2014-03-20 16:42:18 +0100 | [diff] [blame] | 115 | [PKG_CHECK_MODULES([python32], [python-3.2 >= 3.2], |
Uwe Hermann | a507780 | 2014-04-05 13:00:59 +0200 | [diff] [blame] | 116 | [pyver=`$PKG_CONFIG --modversion python-3.2`; |
| 117 | CPPFLAGS_PYTHON="$CPPFLAGS_PYTHON $python32_CFLAGS"; |
Abhishek Kumar | 888bbe3 | 2014-05-09 06:05:00 +0700 | [diff] [blame^] | 118 | LDFLAGS_PYTHON="$LDFLAGS_PYTHON $python32_LIBS"; |
| 119 | MODNAME_PYTHON="python-3.2"], |
Bert Vermeulen | dea61db | 2014-04-24 14:12:49 +0200 | [diff] [blame] | 120 | )])])]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 121 | AC_SUBST(CPPFLAGS_PYTHON) |
| 122 | AC_SUBST(LDFLAGS_PYTHON) |
Abhishek Kumar | 888bbe3 | 2014-05-09 06:05:00 +0700 | [diff] [blame^] | 123 | AC_SUBST(MODNAME_PYTHON) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 124 | |
Uwe Hermann | 1c0dbcc | 2014-05-04 22:17:03 +0200 | [diff] [blame] | 125 | # We also need to find the name of the python3 executable (for 'make install'). |
| 126 | # Some OSes call this python3, some call it python3.2, etc. etc. |
| 127 | AC_CHECK_PROGS([PYTHON3], [python3.4 python3.3 python3.2 python3]) |
| 128 | if test "x$PYTHON3" == "x"; then |
| 129 | AC_MSG_ERROR([cannot find python3 executable.]) |
| 130 | fi |
| 131 | |
Uwe Hermann | 6af04d5 | 2014-01-03 17:41:24 +0100 | [diff] [blame] | 132 | # Link against libm, this is required (among other things) by Python. |
| 133 | AC_SEARCH_LIBS([pow], [m]) |
| 134 | |
Uwe Hermann | 7529cda | 2013-10-16 19:37:44 +0200 | [diff] [blame] | 135 | # The Check unit testing framework is optional. Disable if not found. |
| 136 | PKG_CHECK_MODULES([check], [check >= 0.9.4], |
| 137 | [have_check="yes"; CFLAGS="$CFLAGS $check_CFLAGS"; |
| 138 | LIBS="$LIBS $check_LIBS"], [have_check="no"]) |
| 139 | AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes") |
| 140 | |
Uwe Hermann | 91c7879 | 2014-01-17 17:56:08 +0100 | [diff] [blame] | 141 | # libsigrok is optional (only used for the protocol decoder test framework). |
| 142 | # Disable if not found. |
Uwe Hermann | 92682a9 | 2014-05-06 23:06:57 +0200 | [diff] [blame] | 143 | PKG_CHECK_MODULES([libsigrok], [libsigrok >= 0.3.0], |
Bert Vermeulen | 919ace1 | 2013-12-22 23:07:23 +0100 | [diff] [blame] | 144 | [LIBSIGROK_CFLAGS="$libsigrok_CFLAGS"; LIBSIGROK_LIBS="$libsigrok_LIBS"], |
| 145 | [build_runtc="no"]) |
Bert Vermeulen | f8c88eb | 2013-12-11 01:21:22 +0100 | [diff] [blame] | 146 | AC_SUBST([LIBSIGROK_CFLAGS]) |
| 147 | AC_SUBST([LIBSIGROK_LIBS]) |
Bert Vermeulen | fbd226c | 2013-12-10 17:17:38 +0100 | [diff] [blame] | 148 | |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 149 | # Checks for header files. |
| 150 | # These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h. |
Bert Vermeulen | 919ace1 | 2013-12-22 23:07:23 +0100 | [diff] [blame] | 151 | AC_CHECK_HEADER([sys/resource.h], [], [build_runtc="no"]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 152 | |
Uwe Hermann | 066e65a | 2012-01-03 20:08:18 +0100 | [diff] [blame] | 153 | AC_SUBST(DECODERS_DIR, "$datadir/libsigrokdecode/decoders") |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 154 | AC_SUBST(MAKEFLAGS, '--no-print-directory') |
| 155 | AC_SUBST(AM_LIBTOOLFLAGS, '--silent') |
| 156 | |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 157 | SRD_PACKAGE_VERSION_MAJOR=srd_package_version_major |
| 158 | SRD_PACKAGE_VERSION_MINOR=srd_package_version_minor |
| 159 | SRD_PACKAGE_VERSION_MICRO=srd_package_version_micro |
| 160 | SRD_PACKAGE_VERSION=srd_package_version |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 161 | |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 162 | AC_SUBST(SRD_PACKAGE_VERSION_MAJOR) |
| 163 | AC_SUBST(SRD_PACKAGE_VERSION_MINOR) |
| 164 | AC_SUBST(SRD_PACKAGE_VERSION_MICRO) |
| 165 | AC_SUBST(SRD_PACKAGE_VERSION) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 166 | |
Bert Vermeulen | 919ace1 | 2013-12-22 23:07:23 +0100 | [diff] [blame] | 167 | AM_CONDITIONAL(BUILD_RUNTC, test x"$build_runtc" = "xyes") |
| 168 | |
Uwe Hermann | 20e950f | 2014-04-09 21:06:27 +0200 | [diff] [blame] | 169 | AC_CONFIG_FILES([Makefile version.h libsigrokdecode.pc]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 170 | |
| 171 | AC_OUTPUT |
| 172 | |
Uwe Hermann | aa56f7a | 2012-01-04 02:41:33 +0100 | [diff] [blame] | 173 | echo |
| 174 | echo "libsigrokdecode configuration summary:" |
| 175 | echo |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 176 | echo " - Package version (major.minor.micro): $SRD_PACKAGE_VERSION" |
| 177 | echo " - Library version (current:revision:age): $SRD_LIB_VERSION" |
Uwe Hermann | aa56f7a | 2012-01-04 02:41:33 +0100 | [diff] [blame] | 178 | echo " - Prefix: $prefix" |
Uwe Hermann | cab2b4e | 2013-04-15 12:21:04 +0200 | [diff] [blame] | 179 | echo " - Building on: $build" |
| 180 | echo " - Building for: $host" |
Uwe Hermann | aa56f7a | 2012-01-04 02:41:33 +0100 | [diff] [blame] | 181 | echo |
| 182 | echo "Detected libraries:" |
| 183 | echo |
| 184 | |
Uwe Hermann | a507780 | 2014-04-05 13:00:59 +0200 | [diff] [blame] | 185 | if test "x$pyver" = "xnone"; then |
| 186 | echo " - (REQUIRED) python >= 3.2: no" |
| 187 | else |
| 188 | echo " - (REQUIRED) python >= 3.2: yes ($pyver)" |
| 189 | fi |
| 190 | |
Uwe Hermann | aa56f7a | 2012-01-04 02:41:33 +0100 | [diff] [blame] | 191 | # Note: This only works for libs with pkg-config integration. |
Uwe Hermann | 92682a9 | 2014-05-06 23:06:57 +0200 | [diff] [blame] | 192 | for lib in "glib-2.0 >= 2.24.0" "check >= 0.9.4" "libsigrok >= 0.3.0"; do |
Uwe Hermann | a507780 | 2014-04-05 13:00:59 +0200 | [diff] [blame] | 193 | optional="OPTIONAL" |
| 194 | if test "x$lib" = "xglib-2.0 >= 2.24.0"; then optional="REQUIRED"; fi |
| 195 | if `$PKG_CONFIG --exists $lib`; then |
| 196 | ver=`$PKG_CONFIG --modversion $lib` |
| 197 | answer="yes ($ver)" |
| 198 | else |
| 199 | answer="no" |
| 200 | fi |
| 201 | echo " - ($optional) $lib: $answer" |
Uwe Hermann | aa56f7a | 2012-01-04 02:41:33 +0100 | [diff] [blame] | 202 | done |
| 203 | |
| 204 | echo |
Uwe Hermann | a507780 | 2014-04-05 13:00:59 +0200 | [diff] [blame] | 205 | echo "Enabled features:" |
Uwe Hermann | aa56f7a | 2012-01-04 02:41:33 +0100 | [diff] [blame] | 206 | echo |
Uwe Hermann | a507780 | 2014-04-05 13:00:59 +0200 | [diff] [blame] | 207 | echo " - (OPTIONAL) Library unit test framework support: $have_check" |
| 208 | echo " - (OPTIONAL) Protocol decoder test framework support: $build_runtc" |
Uwe Hermann | aa56f7a | 2012-01-04 02:41:33 +0100 | [diff] [blame] | 209 | echo |
| 210 | |