Peter Stuge | 85a14f4 | 2011-05-09 08:12:24 +0200 | [diff] [blame] | 1 | dnl These m4 macros are whitespace sensitive and break if moved around much. |
| 2 | m4_define([LU_VERSION_H], m4_include([libusb/version.h])) |
| 3 | m4_define([LU_DEFINE_VERSION_ATOM], |
| 4 | [m4_define([$1], m4_bregexp(LU_VERSION_H, |
| 5 | [^#define\s*$1\s*\([0-9]*\).*], [\1]))]) |
Peter Stuge | cbc2d7b | 2011-09-15 16:48:35 +0200 | [diff] [blame] | 6 | m4_define([LU_DEFINE_VERSION_RC_ATOM], |
| 7 | [m4_define([$1], m4_bregexp(LU_VERSION_H, |
| 8 | [^#define\s*$1\s*"\(-rc[0-9]*\)".*], [\1]))]) |
Peter Stuge | 85a14f4 | 2011-05-09 08:12:24 +0200 | [diff] [blame] | 9 | dnl The m4_bregexp() returns (only) the numbers following the #define named |
| 10 | dnl in the first macro parameter. m4_define() then defines the name for use |
Ludovic Rousseau | c9d41fe | 2012-06-01 11:30:00 +0200 | [diff] [blame] | 11 | dnl in AC_INIT. |
Pete Batard | 9a4249f | 2010-07-10 17:51:13 -0600 | [diff] [blame] | 12 | |
Peter Stuge | 85a14f4 | 2011-05-09 08:12:24 +0200 | [diff] [blame] | 13 | LU_DEFINE_VERSION_ATOM([LIBUSB_MAJOR]) |
| 14 | LU_DEFINE_VERSION_ATOM([LIBUSB_MINOR]) |
| 15 | LU_DEFINE_VERSION_ATOM([LIBUSB_MICRO]) |
Peter Stuge | cbc2d7b | 2011-09-15 16:48:35 +0200 | [diff] [blame] | 16 | LU_DEFINE_VERSION_RC_ATOM([LIBUSB_RC]) |
Daniel Drake | d7c2545 | 2010-10-04 20:03:58 +0100 | [diff] [blame] | 17 | |
hjelmn@cs.unm.edu | 1eff220 | 2014-01-08 23:50:34 +0000 | [diff] [blame] | 18 | AC_INIT([libusb],[LIBUSB_MAJOR[.]LIBUSB_MINOR[.]LIBUSB_MICRO[]LIBUSB_RC],[libusb-devel@lists.sourceforge.net],[libusb],[http://libusb.info]) |
Daniel Drake | d7c2545 | 2010-10-04 20:03:58 +0100 | [diff] [blame] | 19 | |
Daniel Drake | d192c5b | 2010-10-04 18:45:18 +0100 | [diff] [blame] | 20 | # Library versioning |
| 21 | # These numbers should be tweaked on every release. Read carefully: |
| 22 | # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html |
| 23 | # http://sourceware.org/autobook/autobook/autobook_91.html |
Nathan Hjelm | fde20bb | 2018-12-05 10:36:50 -0700 | [diff] [blame^] | 24 | lt_current=2 |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 25 | lt_revision=0 |
| 26 | lt_age=1 |
Peter Stuge | 717f476 | 2010-11-15 19:58:51 +0100 | [diff] [blame] | 27 | LTLDFLAGS="-version-info ${lt_current}:${lt_revision}:${lt_age}" |
Pete Batard | 9a4249f | 2010-07-10 17:51:13 -0600 | [diff] [blame] | 28 | |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 29 | AM_INIT_AUTOMAKE |
Peter Stuge | 6e52ea0 | 2010-11-21 23:37:27 +0100 | [diff] [blame] | 30 | |
Daniel Drake | e9364d7 | 2008-01-04 00:40:49 +0000 | [diff] [blame] | 31 | AC_CONFIG_SRCDIR([libusb/core.c]) |
Daniel Drake | 8be2560 | 2009-06-13 17:19:07 +0100 | [diff] [blame] | 32 | AC_CONFIG_MACRO_DIR([m4]) |
Ludovic Rousseau | c9d41fe | 2012-06-01 11:30:00 +0200 | [diff] [blame] | 33 | AC_CONFIG_HEADERS([config.h]) |
Daniel Drake | 9b120c2 | 2009-11-07 10:03:07 +0000 | [diff] [blame] | 34 | m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 35 | |
Nathan Hjelm | 2040ab1 | 2016-03-10 12:57:50 -0700 | [diff] [blame] | 36 | AC_PREREQ([2.69]) |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 37 | AC_PROG_CC |
Chris Dickens | 3dc781c | 2015-12-03 12:59:20 -0800 | [diff] [blame] | 38 | AC_PROG_CXX |
Ludovic Rousseau | c9d41fe | 2012-06-01 11:30:00 +0200 | [diff] [blame] | 39 | LT_INIT |
Peter Stuge | fa9b682 | 2011-09-22 21:17:37 +0200 | [diff] [blame] | 40 | LT_LANG([Windows Resource]) |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 41 | AC_C_INLINE |
| 42 | AM_PROG_CC_C_O |
Peter Stuge | 19d5882 | 2010-11-21 23:09:02 +0100 | [diff] [blame] | 43 | AC_DEFINE([_GNU_SOURCE], 1, [Use GNU extensions]) |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 44 | |
Peter Stuge | 717f476 | 2010-11-15 19:58:51 +0100 | [diff] [blame] | 45 | LTLDFLAGS="${LTLDFLAGS} -no-undefined" |
| 46 | |
Daniel Drake | c0c9432 | 2008-03-13 12:36:56 +0000 | [diff] [blame] | 47 | AC_MSG_CHECKING([operating system]) |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 48 | |
Kuangye Guo | 7e3de5d | 2013-10-21 18:36:15 -0700 | [diff] [blame] | 49 | dnl on linux-android platform, some functions are in different places |
| 50 | case $host in |
| 51 | *-linux-android*) |
| 52 | AC_MSG_RESULT([This is a Linux-Android system]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 53 | is_backend_android=yes |
Kuangye Guo | 7e3de5d | 2013-10-21 18:36:15 -0700 | [diff] [blame] | 54 | ;; |
| 55 | *) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 56 | is_backend_android=no |
Kuangye Guo | 7e3de5d | 2013-10-21 18:36:15 -0700 | [diff] [blame] | 57 | esac |
| 58 | |
Daniel Drake | c0c9432 | 2008-03-13 12:36:56 +0000 | [diff] [blame] | 59 | case $host in |
Gustavo Zacarias | 5f36671 | 2013-09-03 10:24:04 -0300 | [diff] [blame] | 60 | *-linux* | *-uclinux*) |
Daniel Drake | c0c9432 | 2008-03-13 12:36:56 +0000 | [diff] [blame] | 61 | AC_MSG_RESULT([Linux]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 62 | backend=linux |
| 63 | threads=posix |
Nathan Hjelm | b49f6bf | 2009-02-16 21:39:29 -0300 | [diff] [blame] | 64 | ;; |
| 65 | *-darwin*) |
Peter Stuge | 0bd4a4d | 2011-02-26 04:08:38 +0100 | [diff] [blame] | 66 | AC_MSG_RESULT([Darwin/Mac OS X]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 67 | backend=darwin |
| 68 | threads=posix |
Peter Stuge | 6e52ea0 | 2010-11-21 23:37:27 +0100 | [diff] [blame] | 69 | ;; |
Martin Pieuchot | c568288 | 2012-01-30 09:59:30 +0100 | [diff] [blame] | 70 | *-openbsd*) |
Martin Pieuchot | c568288 | 2012-01-30 09:59:30 +0100 | [diff] [blame] | 71 | AC_MSG_RESULT([OpenBSD]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 72 | backend=openbsd |
| 73 | threads=posix |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 74 | ;; |
| 75 | *-netbsd*) |
Hans de Goede | eb4e7be | 2013-08-21 16:18:39 +0200 | [diff] [blame] | 76 | AC_MSG_RESULT([NetBSD]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 77 | backend=netbsd |
| 78 | threads=posix |
Martin Pieuchot | c568288 | 2012-01-30 09:59:30 +0100 | [diff] [blame] | 79 | ;; |
Evan Hunter | 8e3d41e | 2016-01-08 13:53:42 +0000 | [diff] [blame] | 80 | *-mingw* | *msys*) |
Pete Batard | 9a4249f | 2010-07-10 17:51:13 -0600 | [diff] [blame] | 81 | AC_MSG_RESULT([Windows]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 82 | backend=windows |
| 83 | threads=windows |
| 84 | create_import_lib=yes |
Pete Batard | ff3259b | 2012-06-07 11:55:30 +0100 | [diff] [blame] | 85 | AM_CFLAGS="${AM_CFLAGS} -fno-omit-frame-pointer" |
Pete Batard | 9a4249f | 2010-07-10 17:51:13 -0600 | [diff] [blame] | 86 | ;; |
| 87 | *-cygwin*) |
Peter Stuge | 0bd4a4d | 2011-02-26 04:08:38 +0100 | [diff] [blame] | 88 | AC_MSG_RESULT([Cygwin (using Windows backend)]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 89 | backend=windows |
| 90 | threads=posix |
Pete Batard | 9a4249f | 2010-07-10 17:51:13 -0600 | [diff] [blame] | 91 | ;; |
Akshay Jaggi | dc97425 | 2014-09-24 22:46:17 +0100 | [diff] [blame] | 92 | *-haiku*) |
| 93 | AC_MSG_RESULT([Haiku]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 94 | backend=haiku |
| 95 | threads=posix |
Akshay Jaggi | dc97425 | 2014-09-24 22:46:17 +0100 | [diff] [blame] | 96 | ;; |
Lei Chen | eefd322 | 2016-02-19 11:58:39 +0800 | [diff] [blame] | 97 | *-solaris*) |
| 98 | AC_MSG_RESULT([SunOS]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 99 | backend=sunos |
| 100 | threads=posix |
Lei Chen | eefd322 | 2016-02-19 11:58:39 +0800 | [diff] [blame] | 101 | ;; |
Daniel Drake | c0c9432 | 2008-03-13 12:36:56 +0000 | [diff] [blame] | 102 | *) |
Lei Chen | eefd322 | 2016-02-19 11:58:39 +0800 | [diff] [blame] | 103 | AC_MSG_ERROR([unsupported operating system $host]) |
Daniel Drake | c0c9432 | 2008-03-13 12:36:56 +0000 | [diff] [blame] | 104 | esac |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 105 | |
| 106 | case $backend in |
| 107 | linux) |
| 108 | AC_DEFINE(OS_LINUX, 1, [Linux backend]) |
| 109 | AC_SUBST(OS_LINUX) |
Baruch Siach | 552a4a4 | 2018-06-05 14:22:21 +0300 | [diff] [blame] | 110 | AC_SEARCH_LIBS([clock_gettime], [rt], [], [], [-pthread]) |
Nathan Hjelm | 6853291 | 2012-11-29 16:14:03 -0700 | [diff] [blame] | 111 | AC_ARG_ENABLE([udev], |
Toby Gray | 9222a54 | 2013-07-09 16:05:39 +0100 | [diff] [blame] | 112 | [AC_HELP_STRING([--enable-udev], [use udev for device enumeration and hotplug support (recommended) [default=yes]])], |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 113 | [], [enable_udev=yes]) |
| 114 | if test "x$enable_udev" = xyes ; then |
Nathan Hjelm | 6853291 | 2012-11-29 16:14:03 -0700 | [diff] [blame] | 115 | # system has udev. use it or fail! |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 116 | AC_CHECK_HEADERS([libudev.h], [], [AC_MSG_ERROR([udev support requested but libudev header not installed])]) |
| 117 | AC_CHECK_LIB([udev], [udev_new], [], [AC_MSG_ERROR([udev support requested but libudev not installed])]) |
Nathan Hjelm | 6853291 | 2012-11-29 16:14:03 -0700 | [diff] [blame] | 118 | AC_DEFINE(USE_UDEV, 1, [Use udev for device enumeration/hotplug]) |
| 119 | else |
Chris Dickens | 3f4df89 | 2016-01-28 14:15:29 -0800 | [diff] [blame] | 120 | AC_CHECK_HEADERS([asm/types.h], [], []) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 121 | AC_CHECK_HEADERS([sys/socket.h linux/netlink.h], [], [AC_MSG_ERROR([Linux netlink headers not found])], [ |
Nathan Hjelm | 83021ab | 2013-07-27 12:35:51 -0600 | [diff] [blame] | 122 | #ifdef HAVE_ASM_TYPES_H |
| 123 | #include <asm/types.h> |
| 124 | #endif |
Nathan Hjelm | 83021ab | 2013-07-27 12:35:51 -0600 | [diff] [blame] | 125 | #include <sys/socket.h> |
Nathan Hjelm | 83021ab | 2013-07-27 12:35:51 -0600 | [diff] [blame] | 126 | ]) |
Nathan Hjelm | 6853291 | 2012-11-29 16:14:03 -0700 | [diff] [blame] | 127 | fi |
| 128 | AC_SUBST(USE_UDEV) |
Kuangye Guo | 7e3de5d | 2013-10-21 18:36:15 -0700 | [diff] [blame] | 129 | |
Chris Dickens | 068b594 | 2017-01-12 11:01:59 -0800 | [diff] [blame] | 130 | if test "x$is_backend_android" != xyes; then |
| 131 | THREAD_CFLAGS="-pthread" |
| 132 | LIBS="${LIBS} -pthread" |
| 133 | fi |
Kuangye Guo | 7e3de5d | 2013-10-21 18:36:15 -0700 | [diff] [blame] | 134 | |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 135 | AC_CHECK_HEADERS([poll.h]) |
| 136 | AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument]) |
| 137 | ;; |
| 138 | darwin) |
| 139 | AC_DEFINE(OS_DARWIN, 1, [Darwin backend]) |
| 140 | AC_SUBST(OS_DARWIN) |
Peter Stuge | 94b0ccc | 2012-10-23 00:15:23 +0000 | [diff] [blame] | 141 | LIBS="-lobjc -Wl,-framework,IOKit -Wl,-framework,CoreFoundation" |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 142 | LTLDFLAGS="${LTLDFLAGS} -Wl,-prebind" |
| 143 | AC_CHECK_HEADERS([poll.h]) |
| 144 | AC_CHECK_TYPE([nfds_t], |
| 145 | [AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])], |
| 146 | [AC_DEFINE([POLL_NFDS_TYPE],[unsigned int],[type of second poll() argument])], |
| 147 | [#include <poll.h>]) |
| 148 | ;; |
Hans de Goede | eb4e7be | 2013-08-21 16:18:39 +0200 | [diff] [blame] | 149 | openbsd) |
| 150 | AC_DEFINE(OS_OPENBSD, 1, [OpenBSD backend]) |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 151 | AC_SUBST(OS_OPENBSD) |
| 152 | THREAD_CFLAGS="-pthread" |
Peter Stuge | 94b0ccc | 2012-10-23 00:15:23 +0000 | [diff] [blame] | 153 | LIBS="-pthread" |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 154 | AC_CHECK_HEADERS([poll.h]) |
| 155 | AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument]) |
| 156 | ;; |
Lei Chen | eefd322 | 2016-02-19 11:58:39 +0800 | [diff] [blame] | 157 | sunos) |
| 158 | AC_DEFINE(OS_SUNOS, 1, [SunOS backend]) |
| 159 | AC_SUBST(OS_SUNOS) |
| 160 | THREAD_CFLAGS="-pthread" |
| 161 | LIBS="-pthread -ldevinfo" |
| 162 | AC_CHECK_HEADERS([poll.h]) |
| 163 | AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument]) |
| 164 | ;; |
Hans de Goede | eb4e7be | 2013-08-21 16:18:39 +0200 | [diff] [blame] | 165 | netbsd) |
| 166 | AC_DEFINE(OS_NETBSD, 1, [NetBSD backend]) |
| 167 | AC_SUBST(OS_NETBSD) |
| 168 | THREAD_CFLAGS="-pthread" |
| 169 | LIBS="-pthread" |
| 170 | AC_CHECK_HEADERS([poll.h]) |
| 171 | AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument]) |
| 172 | ;; |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 173 | windows) |
Peter Stuge | 1a2d21f | 2011-02-26 04:21:05 +0100 | [diff] [blame] | 174 | AC_DEFINE(OS_WINDOWS, 1, [Windows backend]) |
| 175 | AC_SUBST(OS_WINDOWS) |
Peter Stuge | 94b0ccc | 2012-10-23 00:15:23 +0000 | [diff] [blame] | 176 | LIBS="" |
Peter Stuge | 1a2d21f | 2011-02-26 04:21:05 +0100 | [diff] [blame] | 177 | LTLDFLAGS="${LTLDFLAGS} -avoid-version -Wl,--add-stdcall-alias" |
Peter Stuge | 1a2d21f | 2011-02-26 04:21:05 +0100 | [diff] [blame] | 178 | AC_DEFINE([POLL_NFDS_TYPE],[unsigned int],[type of second poll() argument]) |
Tormod Volden | 4e95d0e | 2014-09-02 19:25:00 +0100 | [diff] [blame] | 179 | AC_DEFINE([WINVER], 0x0501, [Oldest Windows version supported]) |
Chris Dickens | 3001f93 | 2018-01-03 19:19:39 -0800 | [diff] [blame] | 180 | AC_DEFINE([_WIN32_WINNT], 0x0501, [Oldest Windows version supported]) |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 181 | ;; |
Akshay Jaggi | dc97425 | 2014-09-24 22:46:17 +0100 | [diff] [blame] | 182 | haiku) |
| 183 | AC_DEFINE(OS_HAIKU, 1, [Haiku backend]) |
| 184 | AC_SUBST(OS_HAIKU) |
| 185 | LIBS="${LIBS} -lbe" |
| 186 | AC_CHECK_HEADERS([poll.h]) |
| 187 | AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument]) |
| 188 | ;; |
Pete Batard | 968df12 | 2012-04-19 18:01:04 +0100 | [diff] [blame] | 189 | esac |
| 190 | |
Peter Stuge | 94b0ccc | 2012-10-23 00:15:23 +0000 | [diff] [blame] | 191 | AC_SUBST(LIBS) |
Daniel Drake | c0c9432 | 2008-03-13 12:36:56 +0000 | [diff] [blame] | 192 | |
Peter Stuge | c24649d | 2010-10-30 22:28:59 +0200 | [diff] [blame] | 193 | AM_CONDITIONAL(OS_LINUX, test "x$backend" = xlinux) |
| 194 | AM_CONDITIONAL(OS_DARWIN, test "x$backend" = xdarwin) |
Hans de Goede | eb4e7be | 2013-08-21 16:18:39 +0200 | [diff] [blame] | 195 | AM_CONDITIONAL(OS_OPENBSD, test "x$backend" = xopenbsd) |
Lei Chen | eefd322 | 2016-02-19 11:58:39 +0800 | [diff] [blame] | 196 | AM_CONDITIONAL(OS_SUNOS, test "x$backend" = xsunos) |
Hans de Goede | eb4e7be | 2013-08-21 16:18:39 +0200 | [diff] [blame] | 197 | AM_CONDITIONAL(OS_NETBSD, test "x$backend" = xnetbsd) |
Peter Stuge | c24649d | 2010-10-30 22:28:59 +0200 | [diff] [blame] | 198 | AM_CONDITIONAL(OS_WINDOWS, test "x$backend" = xwindows) |
Akshay Jaggi | dc97425 | 2014-09-24 22:46:17 +0100 | [diff] [blame] | 199 | AM_CONDITIONAL(OS_HAIKU, test "x$backend" = xhaiku) |
Peter Stuge | c24649d | 2010-10-30 22:28:59 +0200 | [diff] [blame] | 200 | AM_CONDITIONAL(THREADS_POSIX, test "x$threads" = xposix) |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 201 | AM_CONDITIONAL(CREATE_IMPORT_LIB, test "x$create_import_lib" = xyes) |
Nathan Hjelm | 6853291 | 2012-11-29 16:14:03 -0700 | [diff] [blame] | 202 | AM_CONDITIONAL(USE_UDEV, test "x$enable_udev" = xyes) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 203 | if test "x$threads" = xposix; then |
Peter Stuge | c24649d | 2010-10-30 22:28:59 +0200 | [diff] [blame] | 204 | AC_DEFINE(THREADS_POSIX, 1, [Use POSIX Threads]) |
| 205 | fi |
Daniel Drake | c0c9432 | 2008-03-13 12:36:56 +0000 | [diff] [blame] | 206 | |
Daniel Drake | 4783008 | 2009-10-28 20:33:49 +0545 | [diff] [blame] | 207 | # timerfd |
| 208 | AC_CHECK_HEADER([sys/timerfd.h], [timerfd_h=1], [timerfd_h=0]) |
| 209 | AC_ARG_ENABLE([timerfd], |
| 210 | [AS_HELP_STRING([--enable-timerfd], |
Toby Gray | 9222a54 | 2013-07-09 16:05:39 +0100 | [diff] [blame] | 211 | [use timerfd for timing [default=auto]])], |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 212 | [use_timerfd=$enableval], [use_timerfd=auto]) |
Daniel Drake | 4783008 | 2009-10-28 20:33:49 +0545 | [diff] [blame] | 213 | |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 214 | if test "x$use_timerfd" = xyes -a "x$timerfd_h" = x0; then |
Daniel Drake | 0bd7ef5 | 2009-11-21 16:57:25 +0000 | [diff] [blame] | 215 | AC_MSG_ERROR([timerfd header not available; glibc 2.9+ required]) |
| 216 | fi |
| 217 | |
Chris Dickens | aa73b2e | 2017-02-20 00:55:15 -0800 | [diff] [blame] | 218 | AC_CHECK_DECLS([TFD_NONBLOCK, TFD_CLOEXEC], [tfd_hdr_ok=yes], [tfd_hdr_ok=no], [#include <sys/timerfd.h>]) |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 219 | if test "x$use_timerfd" = xyes -a "x$tfd_hdr_ok" = xno; then |
Daniel Drake | 0bd7ef5 | 2009-11-21 16:57:25 +0000 | [diff] [blame] | 220 | AC_MSG_ERROR([timerfd header not usable; glibc 2.9+ required]) |
Daniel Drake | 4783008 | 2009-10-28 20:33:49 +0545 | [diff] [blame] | 221 | fi |
| 222 | |
| 223 | AC_MSG_CHECKING([whether to use timerfd for timing]) |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 224 | if test "x$use_timerfd" = xno; then |
Daniel Drake | 4783008 | 2009-10-28 20:33:49 +0545 | [diff] [blame] | 225 | AC_MSG_RESULT([no (disabled by user)]) |
| 226 | else |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 227 | if test "x$timerfd_h" = x1 -a "x$tfd_hdr_ok" = xyes; then |
Daniel Drake | 4783008 | 2009-10-28 20:33:49 +0545 | [diff] [blame] | 228 | AC_MSG_RESULT([yes]) |
Peter Stuge | 19d5882 | 2010-11-21 23:09:02 +0100 | [diff] [blame] | 229 | AC_DEFINE(USBI_TIMERFD_AVAILABLE, 1, [timerfd headers available]) |
Daniel Drake | 4783008 | 2009-10-28 20:33:49 +0545 | [diff] [blame] | 230 | else |
| 231 | AC_MSG_RESULT([no (header not available)]) |
| 232 | fi |
| 233 | fi |
| 234 | |
Chris Dickens | aa73b2e | 2017-02-20 00:55:15 -0800 | [diff] [blame] | 235 | AC_CHECK_FUNCS([pipe2]) |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 236 | AC_CHECK_TYPES([struct timespec]) |
Pete Batard | 9a4249f | 2010-07-10 17:51:13 -0600 | [diff] [blame] | 237 | |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 238 | # Message logging |
| 239 | AC_ARG_ENABLE([log], [AS_HELP_STRING([--disable-log], [disable all logging])], |
| 240 | [log_enabled=$enableval], |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 241 | [log_enabled=yes]) |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 242 | if test "x$log_enabled" != xno; then |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 243 | AC_DEFINE([ENABLE_LOGGING], 1, [Message logging]) |
| 244 | fi |
| 245 | |
| 246 | AC_ARG_ENABLE([debug-log], [AS_HELP_STRING([--enable-debug-log], |
Toby Gray | 9222a54 | 2013-07-09 16:05:39 +0100 | [diff] [blame] | 247 | [start with debug message logging enabled [default=no]])], |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 248 | [debug_log_enabled=$enableval], |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 249 | [debug_log_enabled=no]) |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 250 | if test "x$debug_log_enabled" != xno; then |
Pete Batard | cf6e68a | 2012-05-31 18:31:34 +0100 | [diff] [blame] | 251 | AC_DEFINE([ENABLE_DEBUG_LOGGING], 1, [Start with debug message logging enabled]) |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 252 | fi |
| 253 | |
Toby Gray | 9222a54 | 2013-07-09 16:05:39 +0100 | [diff] [blame] | 254 | AC_ARG_ENABLE([system-log], [AS_HELP_STRING([--enable-system-log], |
| 255 | [output logging messages to system wide log, if supported by the OS [default=no]])], |
| 256 | [system_log_enabled=$enableval], |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 257 | [system_log_enabled=no]) |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 258 | if test "x$system_log_enabled" != xno; then |
Toby Gray | 9222a54 | 2013-07-09 16:05:39 +0100 | [diff] [blame] | 259 | AC_DEFINE([USE_SYSTEM_LOGGING_FACILITY], 1, [Enable output to system log]) |
Toby Gray | 9222a54 | 2013-07-09 16:05:39 +0100 | [diff] [blame] | 260 | |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 261 | # Check if syslog is available in standard C library |
| 262 | AC_CHECK_HEADERS(syslog.h) |
| 263 | AC_CHECK_FUNC([syslog], [have_syslog=yes], [have_syslog=no]) |
| 264 | if test "x$have_syslog" != xno; then |
| 265 | AC_DEFINE([HAVE_SYSLOG_FUNC], 1, [syslog() function available]) |
| 266 | fi |
Toby Gray | 9222a54 | 2013-07-09 16:05:39 +0100 | [diff] [blame] | 267 | fi |
| 268 | |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 269 | # Examples build |
| 270 | AC_ARG_ENABLE([examples-build], [AS_HELP_STRING([--enable-examples-build], |
Toby Gray | 9222a54 | 2013-07-09 16:05:39 +0100 | [diff] [blame] | 271 | [build example applications [default=no]])], |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 272 | [build_examples=$enableval], |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 273 | [build_examples=no]) |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 274 | AM_CONDITIONAL(BUILD_EXAMPLES, test "x$build_examples" != xno) |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 275 | |
Toby Gray | 21cf6e4 | 2012-11-21 14:00:31 +0000 | [diff] [blame] | 276 | # Tests build |
| 277 | AC_ARG_ENABLE([tests-build], [AS_HELP_STRING([--enable-tests-build], |
Toby Gray | 9222a54 | 2013-07-09 16:05:39 +0100 | [diff] [blame] | 278 | [build test applications [default=no]])], |
Toby Gray | 21cf6e4 | 2012-11-21 14:00:31 +0000 | [diff] [blame] | 279 | [build_tests=$enableval], |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 280 | [build_tests=no]) |
Chris Dickens | 9417868 | 2017-01-12 13:50:35 -0800 | [diff] [blame] | 281 | AM_CONDITIONAL(BUILD_TESTS, test "x$build_tests" != xno) |
| 282 | |
| 283 | # headers not available on all platforms but required on others |
| 284 | AC_CHECK_HEADERS([sys/time.h]) |
| 285 | |
| 286 | # sigaction not available on MinGW |
| 287 | AC_CHECK_FUNC([sigaction], [have_sigaction=yes], [have_sigaction=no]) |
| 288 | AM_CONDITIONAL(HAVE_SIGACTION, test "x$have_sigaction" = xyes) |
Toby Gray | 21cf6e4 | 2012-11-21 14:00:31 +0000 | [diff] [blame] | 289 | |
Alex Vatchenko | b501795 | 2009-05-28 15:58:50 -0400 | [diff] [blame] | 290 | # check for -fvisibility=hidden compiler support (GCC >= 3.4) |
| 291 | saved_cflags="$CFLAGS" |
Pete Batard | 9a4249f | 2010-07-10 17:51:13 -0600 | [diff] [blame] | 292 | # -Werror required for cygwin |
| 293 | CFLAGS="$CFLAGS -Werror -fvisibility=hidden" |
Peter Stuge | 44b85da | 2010-11-21 23:10:35 +0100 | [diff] [blame] | 294 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], |
Alex Vatchenko | b501795 | 2009-05-28 15:58:50 -0400 | [diff] [blame] | 295 | [VISIBILITY_CFLAGS="-fvisibility=hidden" |
Chris Dickens | cb77a25 | 2017-02-20 00:18:33 -0800 | [diff] [blame] | 296 | AC_DEFINE([DEFAULT_VISIBILITY], [__attribute__((visibility("default")))], [Default visibility])], |
| 297 | [VISIBILITY_CFLAGS="" |
| 298 | AC_DEFINE([DEFAULT_VISIBILITY], [], [Default visibility])], |
Alex Vatchenko | b501795 | 2009-05-28 15:58:50 -0400 | [diff] [blame] | 299 | ]) |
| 300 | CFLAGS="$saved_cflags" |
Nathan Hjelm | b49f6bf | 2009-02-16 21:39:29 -0300 | [diff] [blame] | 301 | |
Alex Vatchenko | b501795 | 2009-05-28 15:58:50 -0400 | [diff] [blame] | 302 | # check for -Wno-pointer-sign compiler support (GCC >= 4) |
| 303 | saved_cflags="$CFLAGS" |
| 304 | CFLAGS="$CFLAGS -Wno-pointer-sign" |
Peter Stuge | 44b85da | 2010-11-21 23:10:35 +0100 | [diff] [blame] | 305 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], |
Alex Vatchenko | b501795 | 2009-05-28 15:58:50 -0400 | [diff] [blame] | 306 | nopointersign_cflags="-Wno-pointer-sign", nopointersign_cflags="") |
| 307 | CFLAGS="$saved_cflags" |
| 308 | |
Akshay Jaggi | dc97425 | 2014-09-24 22:46:17 +0100 | [diff] [blame] | 309 | # check for -std=gnu99 compiler support |
| 310 | saved_cflags="$CFLAGS" |
| 311 | CFLAGS="-std=gnu99" |
| 312 | AC_MSG_CHECKING([whether CC supports -std=gnu99]) |
| 313 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], |
| 314 | [AC_MSG_RESULT([yes])] |
| 315 | [AM_CFLAGS="${AM_CFLAGS} -std=gnu99"], |
| 316 | [AC_MSG_RESULT([no])] |
| 317 | ) |
| 318 | CFLAGS="$saved_cflags" |
| 319 | |
| 320 | AM_CFLAGS="${AM_CFLAGS} -Wall -Wundef -Wunused -Wstrict-prototypes -Werror-implicit-function-declaration $nopointersign_cflags -Wshadow ${THREAD_CFLAGS} ${VISIBILITY_CFLAGS}" |
Alex Vatchenko | b501795 | 2009-05-28 15:58:50 -0400 | [diff] [blame] | 321 | |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 322 | AC_SUBST(AM_CFLAGS) |
Peter Stuge | 717f476 | 2010-11-15 19:58:51 +0100 | [diff] [blame] | 323 | AC_SUBST(LTLDFLAGS) |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 324 | |
Peter Stuge | ef39d15 | 2011-02-25 02:33:29 +0100 | [diff] [blame] | 325 | AC_CONFIG_FILES([libusb-1.0.pc]) |
| 326 | AC_CONFIG_FILES([Makefile]) |
| 327 | AC_CONFIG_FILES([libusb/Makefile]) |
Peter Stuge | ef39d15 | 2011-02-25 02:33:29 +0100 | [diff] [blame] | 328 | AC_CONFIG_FILES([examples/Makefile]) |
Toby Gray | 21cf6e4 | 2012-11-21 14:00:31 +0000 | [diff] [blame] | 329 | AC_CONFIG_FILES([tests/Makefile]) |
Peter Stuge | ef39d15 | 2011-02-25 02:33:29 +0100 | [diff] [blame] | 330 | AC_CONFIG_FILES([doc/Makefile]) |
| 331 | AC_CONFIG_FILES([doc/doxygen.cfg]) |
Daniel Drake | 852bba4 | 2007-11-28 13:48:45 +0000 | [diff] [blame] | 332 | AC_OUTPUT |