2 ## This file is part of the sigrok project.
4 ## Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
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.
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.
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/>.
20 # We require at least autoconf 2.63 (AC_INIT format changed there).
23 AC_INIT([sigrok-cli], [0.3.0], [sigrok-devel@lists.sourceforge.net],
24 [sigrok-cli], [http://www.sigrok.org])
26 AC_CONFIG_SRCDIR([sigrok-cli.c])
28 AC_CONFIG_HEADERS([config.h])
29 AC_CONFIG_MACRO_DIR([autostuff])
30 AC_CONFIG_AUX_DIR([autostuff])
32 # We require at least automake 1.11 (needed for 'silent rules').
33 AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign std-options])
34 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
36 AH_TOP([#ifndef SIGROK_CLI_CONFIG_H
37 #define SIGROK_CLI_CONFIG_H /* To stop multiple inclusions. */])
38 AH_BOTTOM([#endif /* SIGROK_CLI_CONFIG_H */])
40 CFLAGS="-g -Wall -Wextra"
42 # Checks for programs.
51 # Initialize pkg-config.
52 # We require at least 0.22, as "Requires.private" behaviour changed there.
53 PKG_PROG_PKG_CONFIG([0.22])
55 # Checks for libraries.
57 AM_PATH_GLIB_2_0([2.22.0],
58 [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
60 PKG_CHECK_MODULES([libsigrok], [libsigrok >= 0.1.0],
61 [CFLAGS="$CFLAGS $libsigrok_CFLAGS";
62 LIBS="$LIBS $libsigrok_LIBS"])
64 PKG_CHECK_MODULES([libsigrokdecode], [libsigrokdecode >= 0.1.0],
65 [CFLAGS="$CFLAGS $libsigrokdecode_CFLAGS";
66 LIBS="$LIBS $libsigrokdecode_LIBS"])
68 # Checks for header files.
69 # These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
70 AC_CHECK_HEADERS([sys/time.h termios.h])
72 # Checks for typedefs, structures, and compiler characteristics.
84 # Checks for library functions.
85 AC_CHECK_FUNCS([strcasecmp strchr strerror strstr strtol])
87 AC_SUBST(MAKEFLAGS, '--no-print-directory')
88 AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
90 AC_CONFIG_FILES([Makefile
92 contrib/sigrok-cli.nsi
98 echo "sigrok-cli configuration summary:"
100 echo " - Package version: $VERSION"
101 echo " - Prefix: $prefix"
103 echo "Detected libraries:"
106 # Note: This only works for libs with pkg-config integration.
107 for lib in "glib-2.0" "libsigrok" "libsigrokdecode"; do
108 if `$PKG_CONFIG --exists $lib`; then
109 ver=`$PKG_CONFIG --modversion $lib`
114 echo " - $lib: $answer"