]> sigrok.org Git - libsigrokdecode.git/blame - configure.ac
pdtest: Don't bother with diff if any error at all occurred.
[libsigrokdecode.git] / configure.ac
CommitLineData
a190e979 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
a190e979
UH
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 23# libsigrokdecode package version number (NOT the same as shared lib version!).
14b42dad 24m4_define([srd_package_version_major], [0])
10b38516
BV
25m4_define([srd_package_version_minor], [2])
26m4_define([srd_package_version_micro], [0])
14b42dad 27m4_define([srd_package_version], [srd_package_version_major.srd_package_version_minor.srd_package_version_micro])
a190e979 28
14b42dad 29AC_INIT([libsigrokdecode], [srd_package_version],
2891e1bc
UH
30 [sigrok-devel@lists.sourceforge.net], [libsigrokdecode],
31 [http://www.sigrok.org])
a190e979 32AC_CONFIG_HEADER([config.h])
087d133d
UH
33AC_CONFIG_MACRO_DIR([autostuff])
34AC_CONFIG_AUX_DIR([autostuff])
a190e979 35
066ecdab 36# We require at least automake 1.11 (needed for 'silent rules').
7529cdaa 37AM_INIT_AUTOMAKE([1.11 -Wall -Werror check-news color-tests])
a190e979 38m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
bdd820e3 39m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
a190e979 40
14b42dad
UH
41AH_TOP([#ifndef SRD_CONFIG_H
42#define SRD_CONFIG_H /* To stop multiple inclusions. */])
43AH_BOTTOM([#endif /* SRD_CONFIG_H */])
a190e979 44
4bd77045
UH
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.
47CFLAGS="$CFLAGS -Wall -Wextra -fvisibility=hidden"
a190e979
UH
48
49# Checks for programs.
a190e979
UH
50AC_PROG_CC
51AC_PROG_CPP
52AC_PROG_INSTALL
53AC_PROG_LN_S
54
7529cdaa
UH
55# Required for per-target flags or subdir-objects with C sources.
56AM_PROG_CC_C_O
57
a190e979
UH
58# 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
a101c52f 65# Library version for libsigrokdecode (NOT the same as the package version).
a190e979
UH
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
10b38516
BV
69SRD_LIB_VERSION_CURRENT=1
70SRD_LIB_VERSION_REVISION=0
14b42dad
UH
71SRD_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)
a190e979 79
a190e979
UH
80# Checks for libraries.
81
a190e979 82# libglib-2.0 is always needed.
2891e1bc
UH
83# Note: glib-2.0 is part of the libsigrokdecode API
84# (hard pkg-config requirement).
7560e16c 85AM_PATH_GLIB_2_0([2.24.0],
2891e1bc 86 [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
a190e979 87
084f0f94 88# Python support. We require at least Python >= 3.0.
b67eb0bd 89AC_ARG_VAR([PYTHON3_CONFIG], [path to python3-config utility])
307fcf90 90AC_CHECK_PROGS([PYTHON3_CONFIG], [python3-config python3.3-config python-config-3.3 python3.2-config python-config-3.2 python3.1-config python-config-3.1 python3.0-config python-config-3.0])
a190e979
UH
91CPPFLAGS_PYTHON=""
92LDFLAGS_PYTHON=""
93case "$build" in
a190e979
UH
94*mingw*)
95 # We currently hardcode the paths to the Python 3.2 default install
96 # location as there's no 'python-config' script on Windows, it seems.
55e5c4e1 97 # Note: We add both the /c/ and c:/ syntax (needed for cmake).
b67eb0bd 98 AC_MSG_WARN([using hardcoded Python3 configuration on MinGW])
55e5c4e1
UH
99 CPPFLAGS_PYTHON="-I/c/Python32/include -Ic:/Python32/include"
100 LDFLAGS_PYTHON="-L/c/Python32/libs -Lc:/Python32/libs -lpython32"
a190e979
UH
101 ;;
102*)
631b080a
RC
103 # We know that Linux has 'python3-config'.
104 # On Darwin, Macports has python3.x-config, fink has python3-config.
105 # Mac OS X (Snow Leopard) ships with 'python-config' per default, but
106 # that's Python 2.x, so not useful for us.
d523eae6
UH
107 # Everything else is untested, we just hope some $PYTHON3_CONFIG
108 # (i.e., any of the tools we check for above) is available.
b67eb0bd
UH
109 if test -n "$PYTHON3_CONFIG"; then
110 CPPFLAGS_PYTHON="$($PYTHON3_CONFIG --includes)"
111 LDFLAGS_PYTHON="$($PYTHON3_CONFIG --ldflags)"
631b080a
RC
112 else
113 AC_MSG_ERROR([python3-config not found])
114 fi
a190e979
UH
115 ;;
116esac
117AC_SUBST(CPPFLAGS_PYTHON)
118AC_SUBST(LDFLAGS_PYTHON)
119
7529cdaa
UH
120# The Check unit testing framework is optional. Disable if not found.
121PKG_CHECK_MODULES([check], [check >= 0.9.4],
122 [have_check="yes"; CFLAGS="$CFLAGS $check_CFLAGS";
123 LIBS="$LIBS $check_LIBS"], [have_check="no"])
124AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
125
fbd226c3 126PKG_CHECK_MODULES([libsigrok], [libsigrok >= 0.2.0],
f8c88ebc
BV
127 [have_libsigrok="yes";
128 LIBSIGROK_CFLAGS="$libsigrok_CFLAGS";
129 LIBSIGROK_LIBS="$libsigrok_LIBS"],
130 [have_libsigrok="no"])
fbd226c3 131AM_CONDITIONAL(HAVE_LIBSIGROK, test x"$have_libsigrok" = "xyes")
f8c88ebc
BV
132AC_SUBST([LIBSIGROK_CFLAGS])
133AC_SUBST([LIBSIGROK_LIBS])
fbd226c3 134
a190e979
UH
135# Checks for header files.
136# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
81eb8e80 137# AC_CHECK_HEADERS([])
a190e979
UH
138
139# Checks for typedefs, structures, and compiler characteristics.
140AC_C_INLINE
141AC_TYPE_INT8_T
142AC_TYPE_INT16_T
143AC_TYPE_INT32_T
144AC_TYPE_INT64_T
145AC_TYPE_UINT8_T
146AC_TYPE_UINT16_T
147AC_TYPE_UINT32_T
148AC_TYPE_UINT64_T
149AC_TYPE_SIZE_T
150
151# Checks for library functions.
81eb8e80 152AC_CHECK_FUNCS([memset strtoull])
a190e979 153
066e65a3 154AC_SUBST(DECODERS_DIR, "$datadir/libsigrokdecode/decoders")
a190e979
UH
155AC_SUBST(MAKEFLAGS, '--no-print-directory')
156AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
157
14b42dad
UH
158SRD_PACKAGE_VERSION_MAJOR=srd_package_version_major
159SRD_PACKAGE_VERSION_MINOR=srd_package_version_minor
160SRD_PACKAGE_VERSION_MICRO=srd_package_version_micro
161SRD_PACKAGE_VERSION=srd_package_version
a101c52f 162
14b42dad
UH
163AC_SUBST(SRD_PACKAGE_VERSION_MAJOR)
164AC_SUBST(SRD_PACKAGE_VERSION_MINOR)
165AC_SUBST(SRD_PACKAGE_VERSION_MICRO)
166AC_SUBST(SRD_PACKAGE_VERSION)
a101c52f 167
a190e979 168AC_CONFIG_FILES([Makefile
2b628af1 169 version.h
2891e1bc 170 libsigrokdecode.pc
5d24bb21 171 contrib/Makefile
7529cdaa 172 tests/Makefile
a190e979
UH
173 ])
174
175AC_OUTPUT
176
aa56f7ad
UH
177echo
178echo "libsigrokdecode configuration summary:"
179echo
14b42dad
UH
180echo " - Package version (major.minor.micro): $SRD_PACKAGE_VERSION"
181echo " - Library version (current:revision:age): $SRD_LIB_VERSION"
aa56f7ad 182echo " - Prefix: $prefix"
cab2b4eb
UH
183echo " - Building on: $build"
184echo " - Building for: $host"
aa56f7ad
UH
185echo
186echo "Detected libraries:"
187echo
188
189# Note: This only works for libs with pkg-config integration.
fbd226c3 190for lib in "glib-2.0 >= 2.24.0" "check >= 0.9.4" "libsigrok >= 0.2.0"; do
aa56f7ad
UH
191 if `$PKG_CONFIG --exists $lib`; then
192 ver=`$PKG_CONFIG --modversion $lib`
193 answer="yes ($ver)"
194 else
195 answer="no"
196 fi
197 echo " - $lib: $answer"
198done
199
200echo
201echo "Detected Python:"
202echo
203echo " - Python CPPFLAGS: $CPPFLAGS_PYTHON"
204echo " - Python LDFLAGS: $LDFLAGS_PYTHON"
205echo
206