]> sigrok.org Git - libsigrokdecode.git/blame - configure.ac
unfinished update to onewire protocol decoder
[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 23# libsigrokdecode package version number (NOT the same as shared lib version!).
14b42dad
UH
24m4_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])
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
UH
36# We require at least automake 1.11 (needed for 'silent rules').
37AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign std-options])
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
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
14b42dad
UH
65SRD_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)
a190e979 75
a190e979
UH
76# Checks for libraries.
77
a190e979 78# libglib-2.0 is always needed.
2891e1bc
UH
79# Note: glib-2.0 is part of the libsigrokdecode API
80# (hard pkg-config requirement).
a190e979 81AM_PATH_GLIB_2_0([2.22.0],
2891e1bc 82 [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
a190e979 83
084f0f94 84# Python support. We require at least Python >= 3.0.
b67eb0bd
UH
85AC_ARG_VAR([PYTHON3_CONFIG], [path to python3-config utility])
86AC_CHECK_PROGS([PYTHON3_CONFIG], [python3-config python3.2-config python3.1-config python3.0-config])
a190e979
UH
87CPPFLAGS_PYTHON=""
88LDFLAGS_PYTHON=""
89case "$build" in
a190e979
UH
90*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.
b67eb0bd 93 AC_MSG_WARN([using hardcoded Python3 configuration on MinGW])
a190e979
UH
94 CPPFLAGS_PYTHON="-I/c/Python32/include"
95 LDFLAGS_PYTHON="-L/c/Python32/libs -lpython32"
96 ;;
97*)
631b080a
RC
98 # We know that Linux has 'python3-config'.
99 # On Darwin, Macports has python3.x-config, fink has python3-config.
100 # Mac OS X (Snow Leopard) ships with 'python-config' per default, but
101 # that's Python 2.x, so not useful for us.
b67eb0bd
UH
102 # Everything else is untested, we just hope 'PYTHON3_CONFIG' works.
103 if test -n "$PYTHON3_CONFIG"; then
104 CPPFLAGS_PYTHON="$($PYTHON3_CONFIG --includes)"
105 LDFLAGS_PYTHON="$($PYTHON3_CONFIG --ldflags)"
631b080a
RC
106 else
107 AC_MSG_ERROR([python3-config not found])
108 fi
a190e979
UH
109 ;;
110esac
111AC_SUBST(CPPFLAGS_PYTHON)
112AC_SUBST(LDFLAGS_PYTHON)
113
a190e979
UH
114# Checks for header files.
115# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
81eb8e80 116# AC_CHECK_HEADERS([])
a190e979
UH
117
118# Checks for typedefs, structures, and compiler characteristics.
119AC_C_INLINE
120AC_TYPE_INT8_T
121AC_TYPE_INT16_T
122AC_TYPE_INT32_T
123AC_TYPE_INT64_T
124AC_TYPE_UINT8_T
125AC_TYPE_UINT16_T
126AC_TYPE_UINT32_T
127AC_TYPE_UINT64_T
128AC_TYPE_SIZE_T
129
130# Checks for library functions.
81eb8e80 131AC_CHECK_FUNCS([memset strtoull])
a190e979 132
066e65a3 133AC_SUBST(DECODERS_DIR, "$datadir/libsigrokdecode/decoders")
a190e979
UH
134AC_SUBST(MAKEFLAGS, '--no-print-directory')
135AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
136
14b42dad
UH
137SRD_PACKAGE_VERSION_MAJOR=srd_package_version_major
138SRD_PACKAGE_VERSION_MINOR=srd_package_version_minor
139SRD_PACKAGE_VERSION_MICRO=srd_package_version_micro
140SRD_PACKAGE_VERSION=srd_package_version
a101c52f 141
14b42dad
UH
142AC_SUBST(SRD_PACKAGE_VERSION_MAJOR)
143AC_SUBST(SRD_PACKAGE_VERSION_MINOR)
144AC_SUBST(SRD_PACKAGE_VERSION_MICRO)
145AC_SUBST(SRD_PACKAGE_VERSION)
a101c52f 146
a190e979 147AC_CONFIG_FILES([Makefile
03a66522 148 sigrokdecode.h
2891e1bc
UH
149 libsigrokdecode.pc
150 decoders/Makefile
64c29e28 151 decoders/dcf77/Makefile
91b2e171 152 decoders/edid/Makefile
64c29e28 153 decoders/i2c/Makefile
d567790b 154 decoders/i2cdemux/Makefile
61c2bd36 155 decoders/i2cfilter/Makefile
2ab416c2 156 decoders/i2s/Makefile
557a143d 157 decoders/jtag/Makefile
66a8517e 158 decoders/jtag_stm32/Makefile
271acd3b 159 decoders/lpc/Makefile
bc1385a6 160 decoders/mlx90614/Makefile
64c29e28 161 decoders/mx25lxx05d/Makefile
d997c01a 162 decoders/mxc6225xu/Makefile
64c29e28 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
51990c45 169 decoders/onewire/Makefile
a190e979
UH
170 ])
171
172AC_OUTPUT
173
aa56f7ad
UH
174echo
175echo "libsigrokdecode configuration summary:"
176echo
14b42dad
UH
177echo " - Package version (major.minor.micro): $SRD_PACKAGE_VERSION"
178echo " - Library version (current:revision:age): $SRD_LIB_VERSION"
aa56f7ad
UH
179echo " - Prefix: $prefix"
180echo
181echo "Detected libraries:"
182echo
183
184# Note: This only works for libs with pkg-config integration.
185for lib in "glib-2.0"; do
186 if `$PKG_CONFIG --exists $lib`; then
187 ver=`$PKG_CONFIG --modversion $lib`
188 answer="yes ($ver)"
189 else
190 answer="no"
191 fi
192 echo " - $lib: $answer"
193done
194
195echo
196echo "Detected Python:"
197echo
198echo " - Python CPPFLAGS: $CPPFLAGS_PYTHON"
199echo " - Python LDFLAGS: $LDFLAGS_PYTHON"
200echo
201