Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 1 | ## |
| 2 | ## This file is part of the sigrok 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 | |
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]) |
| 25 | m4_define([srd_package_version_minor], [1]) |
Uwe Hermann | d71834a | 2013-01-21 00:59:59 +0100 | [diff] [blame] | 26 | m4_define([srd_package_version_micro], [1]) |
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 | 1c9ac10 | 2013-01-20 21:46:42 +0100 | [diff] [blame] | 37 | AM_INIT_AUTOMAKE([1.11 -Wall -Werror std-options check-news]) |
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. |
| 47 | CFLAGS="$CFLAGS -Wall -Wextra -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 | |
| 55 | # Initialize libtool. |
| 56 | LT_INIT |
| 57 | |
| 58 | # Initialize pkg-config. |
| 59 | # We require at least 0.22, as "Requires.private" behaviour changed there. |
| 60 | PKG_PROG_PKG_CONFIG([0.22]) |
| 61 | |
Uwe Hermann | a101c52 | 2012-01-04 00:44:02 +0100 | [diff] [blame] | 62 | # Library version for libsigrokdecode (NOT the same as the package version). |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 63 | # Carefully read the libtool docs before updating these numbers! |
| 64 | # The algorithm for determining which number to change (and how) is nontrivial! |
| 65 | # http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 66 | SRD_LIB_VERSION_CURRENT=0 |
Uwe Hermann | 2b7c61d | 2013-01-21 00:50:14 +0100 | [diff] [blame] | 67 | SRD_LIB_VERSION_REVISION=1 |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 68 | SRD_LIB_VERSION_AGE=0 |
| 69 | SRD_LIB_VERSION="$SRD_LIB_VERSION_CURRENT:$SRD_LIB_VERSION_REVISION:$SRD_LIB_VERSION_AGE" |
| 70 | SRD_LIB_LDFLAGS="-version-info $SRD_LIB_VERSION" |
| 71 | AC_SUBST(SRD_LIB_VERSION_CURRENT) |
| 72 | AC_SUBST(SRD_LIB_VERSION_REVISION) |
| 73 | AC_SUBST(SRD_LIB_VERSION_AGE) |
| 74 | AC_SUBST(SRD_LIB_VERSION) |
| 75 | AC_SUBST(SRD_LIB_LDFLAGS) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 76 | |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 77 | # Checks for libraries. |
| 78 | |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 79 | # libglib-2.0 is always needed. |
Uwe Hermann | 2891e1b | 2011-12-30 10:50:00 +0100 | [diff] [blame] | 80 | # Note: glib-2.0 is part of the libsigrokdecode API |
| 81 | # (hard pkg-config requirement). |
Uwe Hermann | 7560e16 | 2013-01-19 16:38:46 +0100 | [diff] [blame] | 82 | AM_PATH_GLIB_2_0([2.24.0], |
Uwe Hermann | 2891e1b | 2011-12-30 10:50:00 +0100 | [diff] [blame] | 83 | [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 84 | |
Uwe Hermann | 084f0f9 | 2012-01-02 14:23:15 +0100 | [diff] [blame] | 85 | # Python support. We require at least Python >= 3.0. |
Uwe Hermann | b67eb0b | 2012-01-05 16:01:25 +0100 | [diff] [blame] | 86 | AC_ARG_VAR([PYTHON3_CONFIG], [path to python3-config utility]) |
Uwe Hermann | 2b7e4c8 | 2012-12-12 19:45:52 +0100 | [diff] [blame] | 87 | AC_CHECK_PROGS([PYTHON3_CONFIG], [python3-config python3.3-config python3.2-config python3.1-config python3.0-config]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 88 | CPPFLAGS_PYTHON="" |
| 89 | LDFLAGS_PYTHON="" |
| 90 | case "$build" in |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 91 | *mingw*) |
| 92 | # We currently hardcode the paths to the Python 3.2 default install |
| 93 | # location as there's no 'python-config' script on Windows, it seems. |
Uwe Hermann | 55e5c4e | 2012-10-13 15:49:09 +0200 | [diff] [blame] | 94 | # Note: We add both the /c/ and c:/ syntax (needed for cmake). |
Uwe Hermann | b67eb0b | 2012-01-05 16:01:25 +0100 | [diff] [blame] | 95 | AC_MSG_WARN([using hardcoded Python3 configuration on MinGW]) |
Uwe Hermann | 55e5c4e | 2012-10-13 15:49:09 +0200 | [diff] [blame] | 96 | CPPFLAGS_PYTHON="-I/c/Python32/include -Ic:/Python32/include" |
| 97 | LDFLAGS_PYTHON="-L/c/Python32/libs -Lc:/Python32/libs -lpython32" |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 98 | ;; |
| 99 | *) |
Renato Caldas | 631b080 | 2012-01-05 14:27:13 +0000 | [diff] [blame] | 100 | # We know that Linux has 'python3-config'. |
| 101 | # On Darwin, Macports has python3.x-config, fink has python3-config. |
| 102 | # Mac OS X (Snow Leopard) ships with 'python-config' per default, but |
| 103 | # that's Python 2.x, so not useful for us. |
Uwe Hermann | d523eae | 2013-01-07 22:30:17 +0100 | [diff] [blame] | 104 | # Everything else is untested, we just hope some $PYTHON3_CONFIG |
| 105 | # (i.e., any of the tools we check for above) is available. |
Uwe Hermann | b67eb0b | 2012-01-05 16:01:25 +0100 | [diff] [blame] | 106 | if test -n "$PYTHON3_CONFIG"; then |
| 107 | CPPFLAGS_PYTHON="$($PYTHON3_CONFIG --includes)" |
| 108 | LDFLAGS_PYTHON="$($PYTHON3_CONFIG --ldflags)" |
Renato Caldas | 631b080 | 2012-01-05 14:27:13 +0000 | [diff] [blame] | 109 | else |
| 110 | AC_MSG_ERROR([python3-config not found]) |
| 111 | fi |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 112 | ;; |
| 113 | esac |
| 114 | AC_SUBST(CPPFLAGS_PYTHON) |
| 115 | AC_SUBST(LDFLAGS_PYTHON) |
| 116 | |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 117 | # Checks for header files. |
| 118 | # These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h. |
Uwe Hermann | 81eb8e8 | 2012-01-04 15:26:41 +0100 | [diff] [blame] | 119 | # AC_CHECK_HEADERS([]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 120 | |
| 121 | # Checks for typedefs, structures, and compiler characteristics. |
| 122 | AC_C_INLINE |
| 123 | AC_TYPE_INT8_T |
| 124 | AC_TYPE_INT16_T |
| 125 | AC_TYPE_INT32_T |
| 126 | AC_TYPE_INT64_T |
| 127 | AC_TYPE_UINT8_T |
| 128 | AC_TYPE_UINT16_T |
| 129 | AC_TYPE_UINT32_T |
| 130 | AC_TYPE_UINT64_T |
| 131 | AC_TYPE_SIZE_T |
| 132 | |
| 133 | # Checks for library functions. |
Uwe Hermann | 81eb8e8 | 2012-01-04 15:26:41 +0100 | [diff] [blame] | 134 | AC_CHECK_FUNCS([memset strtoull]) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 135 | |
Uwe Hermann | 066e65a | 2012-01-03 20:08:18 +0100 | [diff] [blame] | 136 | AC_SUBST(DECODERS_DIR, "$datadir/libsigrokdecode/decoders") |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 137 | AC_SUBST(MAKEFLAGS, '--no-print-directory') |
| 138 | AC_SUBST(AM_LIBTOOLFLAGS, '--silent') |
| 139 | |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 140 | SRD_PACKAGE_VERSION_MAJOR=srd_package_version_major |
| 141 | SRD_PACKAGE_VERSION_MINOR=srd_package_version_minor |
| 142 | SRD_PACKAGE_VERSION_MICRO=srd_package_version_micro |
| 143 | SRD_PACKAGE_VERSION=srd_package_version |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 144 | |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 145 | AC_SUBST(SRD_PACKAGE_VERSION_MAJOR) |
| 146 | AC_SUBST(SRD_PACKAGE_VERSION_MINOR) |
| 147 | AC_SUBST(SRD_PACKAGE_VERSION_MICRO) |
| 148 | AC_SUBST(SRD_PACKAGE_VERSION) |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 149 | |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 150 | AC_CONFIG_FILES([Makefile |
Uwe Hermann | 03a6652 | 2012-03-24 19:41:40 +0100 | [diff] [blame] | 151 | sigrokdecode.h |
Uwe Hermann | 2891e1b | 2011-12-30 10:50:00 +0100 | [diff] [blame] | 152 | libsigrokdecode.pc |
Uwe Hermann | 5d24bb2 | 2013-02-09 21:07:53 +0100 | [diff] [blame^] | 153 | contrib/Makefile |
Uwe Hermann | 2891e1b | 2011-12-30 10:50:00 +0100 | [diff] [blame] | 154 | decoders/Makefile |
Uwe Hermann | 3bd7645 | 2012-07-26 18:55:02 +0200 | [diff] [blame] | 155 | decoders/avr_isp/Makefile |
Uwe Hermann | 702fa25 | 2012-11-28 19:06:17 +0100 | [diff] [blame] | 156 | decoders/can/Makefile |
Uwe Hermann | 64c29e2 | 2012-01-15 15:36:01 +0100 | [diff] [blame] | 157 | decoders/dcf77/Makefile |
Bert Vermeulen | 91b2e17 | 2012-01-29 18:43:45 +0100 | [diff] [blame] | 158 | decoders/edid/Makefile |
Uwe Hermann | 64c29e2 | 2012-01-15 15:36:01 +0100 | [diff] [blame] | 159 | decoders/i2c/Makefile |
Uwe Hermann | d567790 | 2012-01-22 14:28:48 +0100 | [diff] [blame] | 160 | decoders/i2cdemux/Makefile |
Bert Vermeulen | 61c2bd3 | 2012-01-31 18:05:11 +0100 | [diff] [blame] | 161 | decoders/i2cfilter/Makefile |
Joel Holdsworth | 2ab416c | 2012-04-06 20:01:02 +0100 | [diff] [blame] | 162 | decoders/i2s/Makefile |
Uwe Hermann | 557a143 | 2012-04-26 22:51:26 +0200 | [diff] [blame] | 163 | decoders/jtag/Makefile |
Uwe Hermann | 66a8517 | 2012-04-28 19:24:57 +0200 | [diff] [blame] | 164 | decoders/jtag_stm32/Makefile |
Uwe Hermann | 44f7ba1 | 2012-06-27 20:02:25 +0200 | [diff] [blame] | 165 | decoders/lm75/Makefile |
Uwe Hermann | 271acd3 | 2012-04-17 23:28:12 +0200 | [diff] [blame] | 166 | decoders/lpc/Makefile |
Uwe Hermann | 23f999a | 2012-11-21 22:29:43 +0100 | [diff] [blame] | 167 | decoders/maxim_ds28ea00/Makefile |
Uwe Hermann | bc1385a | 2012-01-26 23:48:11 +0100 | [diff] [blame] | 168 | decoders/mlx90614/Makefile |
Uwe Hermann | 64c29e2 | 2012-01-15 15:36:01 +0100 | [diff] [blame] | 169 | decoders/mx25lxx05d/Makefile |
Uwe Hermann | d997c01 | 2012-04-19 20:18:10 +0200 | [diff] [blame] | 170 | decoders/mxc6225xu/Makefile |
Uwe Hermann | 365eeed | 2012-05-31 01:03:54 +0200 | [diff] [blame] | 171 | decoders/nunchuk/Makefile |
Uwe Hermann | 23f999a | 2012-11-21 22:29:43 +0100 | [diff] [blame] | 172 | decoders/onewire_link/Makefile |
| 173 | decoders/onewire_network/Makefile |
Uwe Hermann | 64c29e2 | 2012-01-15 15:36:01 +0100 | [diff] [blame] | 174 | decoders/pan1321/Makefile |
Uwe Hermann | ed5f826 | 2012-01-25 01:49:32 +0100 | [diff] [blame] | 175 | decoders/rtc8564/Makefile |
Uwe Hermann | 47ec18f | 2012-07-31 23:48:13 +0200 | [diff] [blame] | 176 | decoders/sdcard_spi/Makefile |
Uwe Hermann | 64c29e2 | 2012-01-15 15:36:01 +0100 | [diff] [blame] | 177 | decoders/spi/Makefile |
Uwe Hermann | 92d1aba | 2012-11-20 16:32:02 +0100 | [diff] [blame] | 178 | decoders/tlc5620/Makefile |
Uwe Hermann | 64c29e2 | 2012-01-15 15:36:01 +0100 | [diff] [blame] | 179 | decoders/transitioncounter/Makefile |
| 180 | decoders/uart/Makefile |
Uwe Hermann | a0153e9 | 2012-06-14 01:14:10 +0200 | [diff] [blame] | 181 | decoders/uart_dump/Makefile |
Uwe Hermann | 2dc6d41 | 2012-06-19 17:29:18 +0200 | [diff] [blame] | 182 | decoders/usb_protocol/Makefile |
Uwe Hermann | 23f999a | 2012-11-21 22:29:43 +0100 | [diff] [blame] | 183 | decoders/usb_signalling/Makefile |
Uwe Hermann | a190e97 | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 184 | ]) |
| 185 | |
| 186 | AC_OUTPUT |
| 187 | |
Uwe Hermann | aa56f7a | 2012-01-04 02:41:33 +0100 | [diff] [blame] | 188 | echo |
| 189 | echo "libsigrokdecode configuration summary:" |
| 190 | echo |
Uwe Hermann | 14b42da | 2012-03-31 11:31:14 +0200 | [diff] [blame] | 191 | echo " - Package version (major.minor.micro): $SRD_PACKAGE_VERSION" |
| 192 | echo " - Library version (current:revision:age): $SRD_LIB_VERSION" |
Uwe Hermann | aa56f7a | 2012-01-04 02:41:33 +0100 | [diff] [blame] | 193 | echo " - Prefix: $prefix" |
| 194 | echo |
| 195 | echo "Detected libraries:" |
| 196 | echo |
| 197 | |
| 198 | # Note: This only works for libs with pkg-config integration. |
| 199 | for lib in "glib-2.0"; do |
| 200 | if `$PKG_CONFIG --exists $lib`; then |
| 201 | ver=`$PKG_CONFIG --modversion $lib` |
| 202 | answer="yes ($ver)" |
| 203 | else |
| 204 | answer="no" |
| 205 | fi |
| 206 | echo " - $lib: $answer" |
| 207 | done |
| 208 | |
| 209 | echo |
| 210 | echo "Detected Python:" |
| 211 | echo |
| 212 | echo " - Python CPPFLAGS: $CPPFLAGS_PYTHON" |
| 213 | echo " - Python LDFLAGS: $LDFLAGS_PYTHON" |
| 214 | echo |
| 215 | |