blob: 7dab1fe7aa5d7a2fe8c2402d442bfe705c887f26 [file] [log] [blame]
Uwe Hermanna190e972011-12-30 10:42:39 +01001##
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 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])
25m4_define([srd_package_version_minor], [1])
26m4_define([srd_package_version_micro], [0])
27m4_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').
37AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign std-options])
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
45CFLAGS="-g -Wall -Wextra"
46
47# Checks for programs.
48AC_PROG_CXX
49AC_PROG_CC
50AC_PROG_CPP
51AC_PROG_INSTALL
52AC_PROG_LN_S
53
54# Initialize libtool.
55LT_INIT
56
57# Initialize pkg-config.
58# We require at least 0.22, as "Requires.private" behaviour changed there.
59PKG_PROG_PKG_CONFIG([0.22])
60
Uwe Hermanna101c522012-01-04 00:44:02 +010061# Library version for libsigrokdecode (NOT the same as the package version).
Uwe Hermanna190e972011-12-30 10:42:39 +010062# Carefully read the libtool docs before updating these numbers!
63# The algorithm for determining which number to change (and how) is nontrivial!
64# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
Uwe Hermann14b42da2012-03-31 11:31:14 +020065SRD_LIB_VERSION_CURRENT=0
66SRD_LIB_VERSION_REVISION=0
67SRD_LIB_VERSION_AGE=0
68SRD_LIB_VERSION="$SRD_LIB_VERSION_CURRENT:$SRD_LIB_VERSION_REVISION:$SRD_LIB_VERSION_AGE"
69SRD_LIB_LDFLAGS="-version-info $SRD_LIB_VERSION"
70AC_SUBST(SRD_LIB_VERSION_CURRENT)
71AC_SUBST(SRD_LIB_VERSION_REVISION)
72AC_SUBST(SRD_LIB_VERSION_AGE)
73AC_SUBST(SRD_LIB_VERSION)
74AC_SUBST(SRD_LIB_LDFLAGS)
Uwe Hermanna190e972011-12-30 10:42:39 +010075
Uwe Hermanna190e972011-12-30 10:42:39 +010076# Checks for libraries.
77
Uwe Hermanna190e972011-12-30 10:42:39 +010078# libglib-2.0 is always needed.
Uwe Hermann2891e1b2011-12-30 10:50:00 +010079# Note: glib-2.0 is part of the libsigrokdecode API
80# (hard pkg-config requirement).
Bert Vermeulen387b6e32012-06-23 01:17:36 +020081AM_PATH_GLIB_2_0([2.28.0],
Uwe Hermann2891e1b2011-12-30 10:50:00 +010082 [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
Uwe Hermanna190e972011-12-30 10:42:39 +010083
Uwe Hermann084f0f92012-01-02 14:23:15 +010084# Python support. We require at least Python >= 3.0.
Uwe Hermannb67eb0b2012-01-05 16:01:25 +010085AC_ARG_VAR([PYTHON3_CONFIG], [path to python3-config utility])
Uwe Hermann2b7e4c82012-12-12 19:45:52 +010086AC_CHECK_PROGS([PYTHON3_CONFIG], [python3-config python3.3-config python3.2-config python3.1-config python3.0-config])
Uwe Hermanna190e972011-12-30 10:42:39 +010087CPPFLAGS_PYTHON=""
88LDFLAGS_PYTHON=""
89case "$build" in
Uwe Hermanna190e972011-12-30 10:42:39 +010090*mingw*)
91 # We currently hardcode the paths to the Python 3.2 default install
92 # location as there's no 'python-config' script on Windows, it seems.
Uwe Hermann55e5c4e2012-10-13 15:49:09 +020093 # Note: We add both the /c/ and c:/ syntax (needed for cmake).
Uwe Hermannb67eb0b2012-01-05 16:01:25 +010094 AC_MSG_WARN([using hardcoded Python3 configuration on MinGW])
Uwe Hermann55e5c4e2012-10-13 15:49:09 +020095 CPPFLAGS_PYTHON="-I/c/Python32/include -Ic:/Python32/include"
96 LDFLAGS_PYTHON="-L/c/Python32/libs -Lc:/Python32/libs -lpython32"
Uwe Hermanna190e972011-12-30 10:42:39 +010097 ;;
98*)
Renato Caldas631b0802012-01-05 14:27:13 +000099 # We know that Linux has 'python3-config'.
100 # On Darwin, Macports has python3.x-config, fink has python3-config.
101 # Mac OS X (Snow Leopard) ships with 'python-config' per default, but
102 # that's Python 2.x, so not useful for us.
Uwe Hermannb67eb0b2012-01-05 16:01:25 +0100103 # Everything else is untested, we just hope 'PYTHON3_CONFIG' works.
104 if test -n "$PYTHON3_CONFIG"; then
105 CPPFLAGS_PYTHON="$($PYTHON3_CONFIG --includes)"
106 LDFLAGS_PYTHON="$($PYTHON3_CONFIG --ldflags)"
Renato Caldas631b0802012-01-05 14:27:13 +0000107 else
108 AC_MSG_ERROR([python3-config not found])
109 fi
Uwe Hermanna190e972011-12-30 10:42:39 +0100110 ;;
111esac
112AC_SUBST(CPPFLAGS_PYTHON)
113AC_SUBST(LDFLAGS_PYTHON)
114
Uwe Hermanna190e972011-12-30 10:42:39 +0100115# Checks for header files.
116# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
Uwe Hermann81eb8e82012-01-04 15:26:41 +0100117# AC_CHECK_HEADERS([])
Uwe Hermanna190e972011-12-30 10:42:39 +0100118
119# Checks for typedefs, structures, and compiler characteristics.
120AC_C_INLINE
121AC_TYPE_INT8_T
122AC_TYPE_INT16_T
123AC_TYPE_INT32_T
124AC_TYPE_INT64_T
125AC_TYPE_UINT8_T
126AC_TYPE_UINT16_T
127AC_TYPE_UINT32_T
128AC_TYPE_UINT64_T
129AC_TYPE_SIZE_T
130
131# Checks for library functions.
Uwe Hermann81eb8e82012-01-04 15:26:41 +0100132AC_CHECK_FUNCS([memset strtoull])
Uwe Hermanna190e972011-12-30 10:42:39 +0100133
Uwe Hermann066e65a2012-01-03 20:08:18 +0100134AC_SUBST(DECODERS_DIR, "$datadir/libsigrokdecode/decoders")
Uwe Hermanna190e972011-12-30 10:42:39 +0100135AC_SUBST(MAKEFLAGS, '--no-print-directory')
136AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
137
Uwe Hermann14b42da2012-03-31 11:31:14 +0200138SRD_PACKAGE_VERSION_MAJOR=srd_package_version_major
139SRD_PACKAGE_VERSION_MINOR=srd_package_version_minor
140SRD_PACKAGE_VERSION_MICRO=srd_package_version_micro
141SRD_PACKAGE_VERSION=srd_package_version
Uwe Hermanna190e972011-12-30 10:42:39 +0100142
Uwe Hermann14b42da2012-03-31 11:31:14 +0200143AC_SUBST(SRD_PACKAGE_VERSION_MAJOR)
144AC_SUBST(SRD_PACKAGE_VERSION_MINOR)
145AC_SUBST(SRD_PACKAGE_VERSION_MICRO)
146AC_SUBST(SRD_PACKAGE_VERSION)
Uwe Hermanna190e972011-12-30 10:42:39 +0100147
Uwe Hermanna190e972011-12-30 10:42:39 +0100148AC_CONFIG_FILES([Makefile
Uwe Hermann03a66522012-03-24 19:41:40 +0100149 sigrokdecode.h
Uwe Hermann2891e1b2011-12-30 10:50:00 +0100150 libsigrokdecode.pc
151 decoders/Makefile
Uwe Hermann3bd76452012-07-26 18:55:02 +0200152 decoders/avr_isp/Makefile
Uwe Hermann64c29e22012-01-15 15:36:01 +0100153 decoders/dcf77/Makefile
Bert Vermeulen91b2e172012-01-29 18:43:45 +0100154 decoders/edid/Makefile
Uwe Hermann64c29e22012-01-15 15:36:01 +0100155 decoders/i2c/Makefile
Uwe Hermannd5677902012-01-22 14:28:48 +0100156 decoders/i2cdemux/Makefile
Bert Vermeulen61c2bd32012-01-31 18:05:11 +0100157 decoders/i2cfilter/Makefile
Joel Holdsworth2ab416c2012-04-06 20:01:02 +0100158 decoders/i2s/Makefile
Uwe Hermann557a1432012-04-26 22:51:26 +0200159 decoders/jtag/Makefile
Uwe Hermann66a85172012-04-28 19:24:57 +0200160 decoders/jtag_stm32/Makefile
Uwe Hermann44f7ba12012-06-27 20:02:25 +0200161 decoders/lm75/Makefile
Uwe Hermann271acd32012-04-17 23:28:12 +0200162 decoders/lpc/Makefile
Uwe Hermann23f999a2012-11-21 22:29:43 +0100163 decoders/maxim_ds28ea00/Makefile
Uwe Hermannbc1385a2012-01-26 23:48:11 +0100164 decoders/mlx90614/Makefile
Uwe Hermann64c29e22012-01-15 15:36:01 +0100165 decoders/mx25lxx05d/Makefile
Uwe Hermannd997c012012-04-19 20:18:10 +0200166 decoders/mxc6225xu/Makefile
Uwe Hermann365eeed2012-05-31 01:03:54 +0200167 decoders/nunchuk/Makefile
Uwe Hermann23f999a2012-11-21 22:29:43 +0100168 decoders/onewire_link/Makefile
169 decoders/onewire_network/Makefile
Uwe Hermann64c29e22012-01-15 15:36:01 +0100170 decoders/pan1321/Makefile
Uwe Hermanned5f8262012-01-25 01:49:32 +0100171 decoders/rtc8564/Makefile
Uwe Hermann47ec18f2012-07-31 23:48:13 +0200172 decoders/sdcard_spi/Makefile
Uwe Hermann64c29e22012-01-15 15:36:01 +0100173 decoders/spi/Makefile
Uwe Hermann92d1aba2012-11-20 16:32:02 +0100174 decoders/tlc5620/Makefile
Uwe Hermann64c29e22012-01-15 15:36:01 +0100175 decoders/transitioncounter/Makefile
176 decoders/uart/Makefile
Uwe Hermanna0153e92012-06-14 01:14:10 +0200177 decoders/uart_dump/Makefile
Uwe Hermann2dc6d412012-06-19 17:29:18 +0200178 decoders/usb_protocol/Makefile
Uwe Hermann23f999a2012-11-21 22:29:43 +0100179 decoders/usb_signalling/Makefile
Uwe Hermanna190e972011-12-30 10:42:39 +0100180 ])
181
182AC_OUTPUT
183
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100184echo
185echo "libsigrokdecode configuration summary:"
186echo
Uwe Hermann14b42da2012-03-31 11:31:14 +0200187echo " - Package version (major.minor.micro): $SRD_PACKAGE_VERSION"
188echo " - Library version (current:revision:age): $SRD_LIB_VERSION"
Uwe Hermannaa56f7a2012-01-04 02:41:33 +0100189echo " - Prefix: $prefix"
190echo
191echo "Detected libraries:"
192echo
193
194# Note: This only works for libs with pkg-config integration.
195for lib in "glib-2.0"; do
196 if `$PKG_CONFIG --exists $lib`; then
197 ver=`$PKG_CONFIG --modversion $lib`
198 answer="yes ($ver)"
199 else
200 answer="no"
201 fi
202 echo " - $lib: $answer"
203done
204
205echo
206echo "Detected Python:"
207echo
208echo " - Python CPPFLAGS: $CPPFLAGS_PYTHON"
209echo " - Python LDFLAGS: $LDFLAGS_PYTHON"
210echo
211