]> sigrok.org Git - libsigrokdecode.git/blame - configure.ac
srd: List 'report()' in all PDs for consistency.
[libsigrokdecode.git] / configure.ac
CommitLineData
a190e979
UH
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
066ecdab
UH
20# We require at least autoconf 2.63 (AC_INIT format changed there).
21AC_PREREQ([2.63])
a190e979 22
a101c52f
UH
23# libsigrokdecode package version number (NOT the same as shared lib version!).
24m4_define([libsigrokdecode_major_version], [0])
abf77a8d 25m4_define([libsigrokdecode_minor_version], [1])
a101c52f
UH
26m4_define([libsigrokdecode_micro_version], [0])
27m4_define([libsigrokdecode_version],
28 [libsigrokdecode_major_version.libsigrokdecode_minor_version.libsigrokdecode_micro_version])
a190e979 29
2891e1bc
UH
30AC_INIT([libsigrokdecode], [libsigrokdecode_version],
31 [sigrok-devel@lists.sourceforge.net], [libsigrokdecode],
32 [http://www.sigrok.org])
a190e979 33AC_CONFIG_HEADER([config.h])
087d133d
UH
34AC_CONFIG_MACRO_DIR([autostuff])
35AC_CONFIG_AUX_DIR([autostuff])
a190e979 36
066ecdab
UH
37# We require at least automake 1.11 (needed for 'silent rules').
38AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign std-options])
a190e979
UH
39m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
40
2891e1bc
UH
41AH_TOP([#ifndef LIBSIGROKDECODE_CONFIG_H
42#define LIBSIGROKDECODE_CONFIG_H /* To stop multiple inclusions. */])
43AH_BOTTOM([#endif /* LIBSIGROKDECODE_CONFIG_H */])
a190e979
UH
44
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
a101c52f 61# Library version for libsigrokdecode (NOT the same as the package version).
a190e979
UH
62# 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
a101c52f
UH
65LIBSIGROKDECODE_LT_CURRENT=0
66LIBSIGROKDECODE_LT_REVISION=0
67LIBSIGROKDECODE_LT_AGE=0
68LIBSIGROKDECODE_LT_VERSION="$LIBSIGROKDECODE_LT_CURRENT:$LIBSIGROKDECODE_LT_REVISION:$LIBSIGROKDECODE_LT_AGE"
69LIBSIGROKDECODE_LT_LDFLAGS="-version-info $LIBSIGROKDECODE_LT_VERSION"
70AC_SUBST(LIBSIGROKDECODE_LT_LDFLAGS)
a190e979 71
a190e979
UH
72# Checks for libraries.
73
a190e979 74# libglib-2.0 is always needed.
2891e1bc
UH
75# Note: glib-2.0 is part of the libsigrokdecode API
76# (hard pkg-config requirement).
a190e979 77AM_PATH_GLIB_2_0([2.22.0],
2891e1bc 78 [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
a190e979 79
084f0f94 80# Python support. We require at least Python >= 3.0.
b67eb0bd
UH
81AC_ARG_VAR([PYTHON3_CONFIG], [path to python3-config utility])
82AC_CHECK_PROGS([PYTHON3_CONFIG], [python3-config python3.2-config python3.1-config python3.0-config])
a190e979
UH
83CPPFLAGS_PYTHON=""
84LDFLAGS_PYTHON=""
85case "$build" in
a190e979
UH
86*mingw*)
87 # We currently hardcode the paths to the Python 3.2 default install
88 # location as there's no 'python-config' script on Windows, it seems.
b67eb0bd 89 AC_MSG_WARN([using hardcoded Python3 configuration on MinGW])
a190e979
UH
90 CPPFLAGS_PYTHON="-I/c/Python32/include"
91 LDFLAGS_PYTHON="-L/c/Python32/libs -lpython32"
92 ;;
93*)
631b080a
RC
94 # We know that Linux has 'python3-config'.
95 # On Darwin, Macports has python3.x-config, fink has python3-config.
96 # Mac OS X (Snow Leopard) ships with 'python-config' per default, but
97 # that's Python 2.x, so not useful for us.
b67eb0bd
UH
98 # Everything else is untested, we just hope 'PYTHON3_CONFIG' works.
99 if test -n "$PYTHON3_CONFIG"; then
100 CPPFLAGS_PYTHON="$($PYTHON3_CONFIG --includes)"
101 LDFLAGS_PYTHON="$($PYTHON3_CONFIG --ldflags)"
631b080a
RC
102 else
103 AC_MSG_ERROR([python3-config not found])
104 fi
a190e979
UH
105 ;;
106esac
107AC_SUBST(CPPFLAGS_PYTHON)
108AC_SUBST(LDFLAGS_PYTHON)
109
a190e979
UH
110# Checks for header files.
111# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
81eb8e80 112# AC_CHECK_HEADERS([])
a190e979
UH
113
114# Checks for typedefs, structures, and compiler characteristics.
115AC_C_INLINE
116AC_TYPE_INT8_T
117AC_TYPE_INT16_T
118AC_TYPE_INT32_T
119AC_TYPE_INT64_T
120AC_TYPE_UINT8_T
121AC_TYPE_UINT16_T
122AC_TYPE_UINT32_T
123AC_TYPE_UINT64_T
124AC_TYPE_SIZE_T
125
126# Checks for library functions.
81eb8e80 127AC_CHECK_FUNCS([memset strtoull])
a190e979 128
066e65a3 129AC_SUBST(DECODERS_DIR, "$datadir/libsigrokdecode/decoders")
a190e979
UH
130AC_SUBST(MAKEFLAGS, '--no-print-directory')
131AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
132
a101c52f
UH
133LIBSIGROKDECODE_MAJOR_VERSION=libsigrokdecode_major_version
134LIBSIGROKDECODE_MINOR_VERSION=libsigrokdecode_minor_version
135LIBSIGROKDECODE_MICRO_VERSION=libsigrokdecode_micro_version
136LIBSIGROKDECODE_VERSION=libsigrokdecode_version
137
138AC_SUBST(LIBSIGROKDECODE_MAJOR_VERSION)
139AC_SUBST(LIBSIGROKDECODE_MINOR_VERSION)
140AC_SUBST(LIBSIGROKDECODE_MICRO_VERSION)
141AC_SUBST(LIBSIGROKDECODE_VERSION)
142
143AC_DEFINE(LIBSIGROKDECODE_MAJOR_VERSION, [libsigrokdecode_major_version],
144 [Define to the libsigrokdecode major package version])
145AC_DEFINE(LIBSIGROKDECODE_MINOR_VERSION, [libsigrokdecode_minor_version],
146 [Define to the libsigrokdecode minor package version])
147AC_DEFINE(LIBSIGROKDECODE_MICRO_VERSION, [libsigrokdecode_micro_version],
148 [Define to the libsigrokdecode micro package version])
149AC_DEFINE(LIBSIGROKDECODE_VERSION, [libsigrokdecode_version],
150 [Define to the libsigrokdecode package version])
a190e979
UH
151
152AC_CONFIG_FILES([Makefile
2891e1bc
UH
153 libsigrokdecode.pc
154 decoders/Makefile
64c29e28 155 decoders/dcf77/Makefile
91b2e171 156 decoders/edid/Makefile
64c29e28 157 decoders/i2c/Makefile
d567790b 158 decoders/i2cdemux/Makefile
61c2bd36 159 decoders/i2cfilter/Makefile
bc1385a6 160 decoders/mlx90614/Makefile
64c29e28
UH
161 decoders/mx25lxx05d/Makefile
162 decoders/nunchuk/Makefile
163 decoders/pan1321/Makefile
ed5f826a 164 decoders/rtc8564/Makefile
64c29e28
UH
165 decoders/spi/Makefile
166 decoders/transitioncounter/Makefile
167 decoders/uart/Makefile
168 decoders/usb/Makefile
a190e979
UH
169 ])
170
171AC_OUTPUT
172
aa56f7ad
UH
173echo
174echo "libsigrokdecode configuration summary:"
175echo
176echo " - Package version (major.minor.micro): $LIBSIGROKDECODE_VERSION"
177echo " - Library version (current:revision:age): $LIBSIGROKDECODE_LT_VERSION"
178echo " - Prefix: $prefix"
179echo
180echo "Detected libraries:"
181echo
182
183# Note: This only works for libs with pkg-config integration.
184for lib in "glib-2.0"; do
185 if `$PKG_CONFIG --exists $lib`; then
186 ver=`$PKG_CONFIG --modversion $lib`
187 answer="yes ($ver)"
188 else
189 answer="no"
190 fi
191 echo " - $lib: $answer"
192done
193
194echo
195echo "Detected Python:"
196echo
197echo " - Python CPPFLAGS: $CPPFLAGS_PYTHON"
198echo " - Python LDFLAGS: $LDFLAGS_PYTHON"
199echo
200