blob: 7b7951749dd0ec3a15c9e439d80007f754e5bd51 [file] [log] [blame]
Peter Stuge85a14f42011-05-09 08:12:24 +02001dnl These m4 macros are whitespace sensitive and break if moved around much.
2m4_define([LU_VERSION_H], m4_include([libusb/version.h]))
3m4_define([LU_DEFINE_VERSION_ATOM],
4 [m4_define([$1], m4_bregexp(LU_VERSION_H,
5 [^#define\s*$1\s*\([0-9]*\).*], [\1]))])
Peter Stugecbc2d7b2011-09-15 16:48:35 +02006m4_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 Stuge85a14f42011-05-09 08:12:24 +02009dnl The m4_bregexp() returns (only) the numbers following the #define named
10dnl in the first macro parameter. m4_define() then defines the name for use
Ludovic Rousseauc9d41fe2012-06-01 11:30:00 +020011dnl in AC_INIT.
Pete Batard9a4249f2010-07-10 17:51:13 -060012
Peter Stuge85a14f42011-05-09 08:12:24 +020013LU_DEFINE_VERSION_ATOM([LIBUSB_MAJOR])
14LU_DEFINE_VERSION_ATOM([LIBUSB_MINOR])
15LU_DEFINE_VERSION_ATOM([LIBUSB_MICRO])
Peter Stugecbc2d7b2011-09-15 16:48:35 +020016LU_DEFINE_VERSION_RC_ATOM([LIBUSB_RC])
Daniel Draked7c25452010-10-04 20:03:58 +010017
hjelmn@cs.unm.edu1eff2202014-01-08 23:50:34 +000018AC_INIT([libusb],[LIBUSB_MAJOR[.]LIBUSB_MINOR[.]LIBUSB_MICRO[]LIBUSB_RC],[libusb-devel@lists.sourceforge.net],[libusb],[http://libusb.info])
Daniel Draked7c25452010-10-04 20:03:58 +010019
Daniel Draked192c5b2010-10-04 18:45:18 +010020# 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
24lt_current="1"
25lt_revision="0"
26lt_age="1"
Peter Stuge717f4762010-11-15 19:58:51 +010027LTLDFLAGS="-version-info ${lt_current}:${lt_revision}:${lt_age}"
Pete Batard9a4249f2010-07-10 17:51:13 -060028
Daniel Drake852bba42007-11-28 13:48:45 +000029AM_INIT_AUTOMAKE
Peter Stuge6e52ea02010-11-21 23:37:27 +010030
Daniel Drakee9364d72008-01-04 00:40:49 +000031AC_CONFIG_SRCDIR([libusb/core.c])
Daniel Drake8be25602009-06-13 17:19:07 +010032AC_CONFIG_MACRO_DIR([m4])
Ludovic Rousseauc9d41fe2012-06-01 11:30:00 +020033AC_CONFIG_HEADERS([config.h])
Daniel Drake9b120c22009-11-07 10:03:07 +000034m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
Daniel Drake852bba42007-11-28 13:48:45 +000035
Nathan Hjelm2040ab12016-03-10 12:57:50 -070036AC_PREREQ([2.69])
Daniel Drake852bba42007-11-28 13:48:45 +000037AC_PROG_CC
Chris Dickens3dc781c2015-12-03 12:59:20 -080038AC_PROG_CXX
Ludovic Rousseauc9d41fe2012-06-01 11:30:00 +020039LT_INIT
Peter Stugefa9b6822011-09-22 21:17:37 +020040LT_LANG([Windows Resource])
Daniel Drake852bba42007-11-28 13:48:45 +000041AC_C_INLINE
42AM_PROG_CC_C_O
Peter Stuge19d58822010-11-21 23:09:02 +010043AC_DEFINE([_GNU_SOURCE], 1, [Use GNU extensions])
Daniel Drake852bba42007-11-28 13:48:45 +000044
Peter Stuge717f4762010-11-15 19:58:51 +010045LTLDFLAGS="${LTLDFLAGS} -no-undefined"
46
Daniel Drakec0c94322008-03-13 12:36:56 +000047AC_MSG_CHECKING([operating system])
Pete Batard968df122012-04-19 18:01:04 +010048
Kuangye Guo7e3de5d2013-10-21 18:36:15 -070049dnl on linux-android platform, some functions are in different places
50case $host in
51*-linux-android*)
52 AC_MSG_RESULT([This is a Linux-Android system])
53 is_backend_android="yes"
54 ;;
55*)
56 is_backend_android="no"
57esac
58
Daniel Drakec0c94322008-03-13 12:36:56 +000059case $host in
Gustavo Zacarias5f366712013-09-03 10:24:04 -030060*-linux* | *-uclinux*)
Daniel Drakec0c94322008-03-13 12:36:56 +000061 AC_MSG_RESULT([Linux])
62 backend="linux"
Peter Stuge23b5db82010-05-11 00:51:43 +010063 threads="posix"
Nathan Hjelmb49f6bf2009-02-16 21:39:29 -030064 ;;
65*-darwin*)
Peter Stuge0bd4a4d2011-02-26 04:08:38 +010066 AC_MSG_RESULT([Darwin/Mac OS X])
Nathan Hjelmb49f6bf2009-02-16 21:39:29 -030067 backend="darwin"
Peter Stuge23b5db82010-05-11 00:51:43 +010068 threads="posix"
Peter Stuge6e52ea02010-11-21 23:37:27 +010069 ;;
Martin Pieuchotc5682882012-01-30 09:59:30 +010070*-openbsd*)
Martin Pieuchotc5682882012-01-30 09:59:30 +010071 AC_MSG_RESULT([OpenBSD])
Hans de Goedeeb4e7be2013-08-21 16:18:39 +020072 backend="openbsd"
Martin Pieuchotc5682882012-01-30 09:59:30 +010073 threads="posix"
Pete Batard968df122012-04-19 18:01:04 +010074 ;;
75*-netbsd*)
Hans de Goedeeb4e7be2013-08-21 16:18:39 +020076 AC_MSG_RESULT([NetBSD])
77 backend="netbsd"
Pete Batard968df122012-04-19 18:01:04 +010078 threads="posix"
Martin Pieuchotc5682882012-01-30 09:59:30 +010079 ;;
Evan Hunter8e3d41e2016-01-08 13:53:42 +000080*-mingw* | *msys*)
Pete Batard9a4249f2010-07-10 17:51:13 -060081 AC_MSG_RESULT([Windows])
82 backend="windows"
Pete Batard968df122012-04-19 18:01:04 +010083 threads="windows"
Pete Batard6b33cd42012-06-08 23:31:56 +010084 create_import_lib="yes"
Pete Batardff3259b2012-06-07 11:55:30 +010085 AM_CFLAGS="${AM_CFLAGS} -fno-omit-frame-pointer"
Pete Batard9a4249f2010-07-10 17:51:13 -060086 ;;
87*-cygwin*)
Peter Stuge0bd4a4d2011-02-26 04:08:38 +010088 AC_MSG_RESULT([Cygwin (using Windows backend)])
Pete Batard9a4249f2010-07-10 17:51:13 -060089 backend="windows"
90 threads="posix"
Pete Batard9a4249f2010-07-10 17:51:13 -060091 ;;
Akshay Jaggidc974252014-09-24 22:46:17 +010092*-haiku*)
93 AC_MSG_RESULT([Haiku])
Akshay Jaggidc974252014-09-24 22:46:17 +010094 backend="haiku"
95 threads="posix"
96 ;;
Lei Cheneefd3222016-02-19 11:58:39 +080097*-solaris*)
98 AC_MSG_RESULT([SunOS])
99 backend="sunos"
100 threads="posix"
101 ;;
Daniel Drakec0c94322008-03-13 12:36:56 +0000102*)
Lei Cheneefd3222016-02-19 11:58:39 +0800103 AC_MSG_ERROR([unsupported operating system $host])
Daniel Drakec0c94322008-03-13 12:36:56 +0000104esac
Pete Batard968df122012-04-19 18:01:04 +0100105
106case $backend in
107linux)
108 AC_DEFINE(OS_LINUX, 1, [Linux backend])
109 AC_SUBST(OS_LINUX)
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000110 AC_SEARCH_LIBS(clock_gettime, rt, [], [], -pthread)
Nathan Hjelm68532912012-11-29 16:14:03 -0700111 AC_ARG_ENABLE([udev],
Toby Gray9222a542013-07-09 16:05:39 +0100112 [AC_HELP_STRING([--enable-udev], [use udev for device enumeration and hotplug support (recommended) [default=yes]])],
Nathan Hjelm68532912012-11-29 16:14:03 -0700113 [], [enable_udev="yes"])
114 if test "x$enable_udev" = "xyes" ; then
115 # system has udev. use it or fail!
116 AC_CHECK_HEADERS([libudev.h],[],[AC_ERROR(["udev support requested but libudev not installed"])])
117 AC_CHECK_LIB([udev], [udev_new], [], [AC_ERROR(["udev support requested but libudev not installed"])])
118 AC_DEFINE(USE_UDEV, 1, [Use udev for device enumeration/hotplug])
119 else
Chris Dickens3f4df892016-01-28 14:15:29 -0800120 AC_CHECK_HEADERS([asm/types.h], [], [])
121 AC_CHECK_HEADERS([sys/socket.h linux/netlink.h], [], [AC_ERROR(["Linux netlink headers not found"])], [
Nathan Hjelm83021ab2013-07-27 12:35:51 -0600122#ifdef HAVE_ASM_TYPES_H
123#include <asm/types.h>
124#endif
Nathan Hjelm83021ab2013-07-27 12:35:51 -0600125#include <sys/socket.h>
Nathan Hjelm83021ab2013-07-27 12:35:51 -0600126])
Nathan Hjelm68532912012-11-29 16:14:03 -0700127 fi
128 AC_SUBST(USE_UDEV)
Kuangye Guo7e3de5d2013-10-21 18:36:15 -0700129
130case $is_backend_android in
131yes)
Kuangye Guo7e3de5d2013-10-21 18:36:15 -0700132 dnl there are gettimeofday function but configure doesn't seem to be able to find it.
133 AC_DEFINE([HAVE_GETTIMEOFDAY], [1], [Define if you have gettimeofday])
134 ;;
135*)
Pete Batard968df122012-04-19 18:01:04 +0100136 THREAD_CFLAGS="-pthread"
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000137 LIBS="${LIBS} -pthread"
Kuangye Guo7e3de5d2013-10-21 18:36:15 -0700138esac
139
Pete Batard968df122012-04-19 18:01:04 +0100140 AC_CHECK_HEADERS([poll.h])
141 AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])
142 ;;
143darwin)
144 AC_DEFINE(OS_DARWIN, 1, [Darwin backend])
145 AC_SUBST(OS_DARWIN)
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000146 LIBS="-lobjc -Wl,-framework,IOKit -Wl,-framework,CoreFoundation"
Pete Batard968df122012-04-19 18:01:04 +0100147 LTLDFLAGS="${LTLDFLAGS} -Wl,-prebind"
148 AC_CHECK_HEADERS([poll.h])
149 AC_CHECK_TYPE([nfds_t],
150 [AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])],
151 [AC_DEFINE([POLL_NFDS_TYPE],[unsigned int],[type of second poll() argument])],
152 [#include <poll.h>])
153 ;;
Hans de Goedeeb4e7be2013-08-21 16:18:39 +0200154openbsd)
155 AC_DEFINE(OS_OPENBSD, 1, [OpenBSD backend])
Pete Batard968df122012-04-19 18:01:04 +0100156 AC_SUBST(OS_OPENBSD)
157 THREAD_CFLAGS="-pthread"
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000158 LIBS="-pthread"
Pete Batard968df122012-04-19 18:01:04 +0100159 AC_CHECK_HEADERS([poll.h])
160 AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])
161 ;;
Lei Cheneefd3222016-02-19 11:58:39 +0800162sunos)
163 AC_DEFINE(OS_SUNOS, 1, [SunOS backend])
164 AC_SUBST(OS_SUNOS)
165 THREAD_CFLAGS="-pthread"
166 LIBS="-pthread -ldevinfo"
167 AC_CHECK_HEADERS([poll.h])
168 AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])
169 ;;
Hans de Goedeeb4e7be2013-08-21 16:18:39 +0200170netbsd)
171 AC_DEFINE(OS_NETBSD, 1, [NetBSD backend])
172 AC_SUBST(OS_NETBSD)
173 THREAD_CFLAGS="-pthread"
174 LIBS="-pthread"
175 AC_CHECK_HEADERS([poll.h])
176 AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])
177 ;;
Pete Batard968df122012-04-19 18:01:04 +0100178windows)
Peter Stuge1a2d21f2011-02-26 04:21:05 +0100179 AC_DEFINE(OS_WINDOWS, 1, [Windows backend])
180 AC_SUBST(OS_WINDOWS)
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000181 LIBS=""
Peter Stuge1a2d21f2011-02-26 04:21:05 +0100182 LTLDFLAGS="${LTLDFLAGS} -avoid-version -Wl,--add-stdcall-alias"
Peter Stuge1a2d21f2011-02-26 04:21:05 +0100183 AC_DEFINE([POLL_NFDS_TYPE],[unsigned int],[type of second poll() argument])
Tormod Volden4e95d0e2014-09-02 19:25:00 +0100184 AC_DEFINE([WINVER], 0x0501, [Oldest Windows version supported])
Dmitry Fleytman24c52892016-01-20 17:05:55 +0200185
186 AC_ARG_ENABLE([usbdk],
187 [AC_HELP_STRING([--enable-usbdk], [use UsbDk Windows backend [default=no]])],
188 [], [enable_usbdk="no"])
189 if test "x$enable_usbdk" = "xyes" ; then
190 AC_DEFINE(USE_USBDK, 1, [Use UsbDk Windows backend])
191 fi
192 AC_SUBST(USE_USBDK)
Pete Batard968df122012-04-19 18:01:04 +0100193 ;;
Akshay Jaggidc974252014-09-24 22:46:17 +0100194haiku)
195 AC_DEFINE(OS_HAIKU, 1, [Haiku backend])
196 AC_SUBST(OS_HAIKU)
197 LIBS="${LIBS} -lbe"
198 AC_CHECK_HEADERS([poll.h])
199 AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])
200 ;;
Pete Batard968df122012-04-19 18:01:04 +0100201esac
202
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000203AC_SUBST(LIBS)
Daniel Drakec0c94322008-03-13 12:36:56 +0000204
Peter Stugec24649d2010-10-30 22:28:59 +0200205AM_CONDITIONAL(OS_LINUX, test "x$backend" = xlinux)
206AM_CONDITIONAL(OS_DARWIN, test "x$backend" = xdarwin)
Hans de Goedeeb4e7be2013-08-21 16:18:39 +0200207AM_CONDITIONAL(OS_OPENBSD, test "x$backend" = xopenbsd)
Lei Cheneefd3222016-02-19 11:58:39 +0800208AM_CONDITIONAL(OS_SUNOS, test "x$backend" = xsunos)
Hans de Goedeeb4e7be2013-08-21 16:18:39 +0200209AM_CONDITIONAL(OS_NETBSD, test "x$backend" = xnetbsd)
Peter Stugec24649d2010-10-30 22:28:59 +0200210AM_CONDITIONAL(OS_WINDOWS, test "x$backend" = xwindows)
Akshay Jaggidc974252014-09-24 22:46:17 +0100211AM_CONDITIONAL(OS_HAIKU, test "x$backend" = xhaiku)
Peter Stugec24649d2010-10-30 22:28:59 +0200212AM_CONDITIONAL(THREADS_POSIX, test "x$threads" = xposix)
Nathan Hjelm68532912012-11-29 16:14:03 -0700213AM_CONDITIONAL(CREATE_IMPORT_LIB, test "x$create_import_lib" = "xyes")
214AM_CONDITIONAL(USE_UDEV, test "x$enable_udev" = xyes)
Dmitry Fleytman24c52892016-01-20 17:05:55 +0200215AM_CONDITIONAL(USE_USBDK, test "x$enable_usbdk" = xyes)
Peter Stugec24649d2010-10-30 22:28:59 +0200216if test "$threads" = posix; then
217 AC_DEFINE(THREADS_POSIX, 1, [Use POSIX Threads])
218fi
Daniel Drakec0c94322008-03-13 12:36:56 +0000219
Daniel Drake47830082009-10-28 20:33:49 +0545220# timerfd
221AC_CHECK_HEADER([sys/timerfd.h], [timerfd_h=1], [timerfd_h=0])
222AC_ARG_ENABLE([timerfd],
223 [AS_HELP_STRING([--enable-timerfd],
Toby Gray9222a542013-07-09 16:05:39 +0100224 [use timerfd for timing [default=auto]])],
Daniel Drake47830082009-10-28 20:33:49 +0545225 [use_timerfd=$enableval], [use_timerfd='auto'])
226
227if test "x$use_timerfd" = "xyes" -a "x$timerfd_h" = "x0"; then
Daniel Drake0bd7ef52009-11-21 16:57:25 +0000228 AC_MSG_ERROR([timerfd header not available; glibc 2.9+ required])
229fi
230
231AC_CHECK_DECL([TFD_NONBLOCK], [tfd_hdr_ok=yes], [tfd_hdr_ok=no], [#include <sys/timerfd.h>])
232if test "x$use_timerfd" = "xyes" -a "x$tfd_hdr_ok" = "xno"; then
233 AC_MSG_ERROR([timerfd header not usable; glibc 2.9+ required])
Daniel Drake47830082009-10-28 20:33:49 +0545234fi
235
236AC_MSG_CHECKING([whether to use timerfd for timing])
237if test "x$use_timerfd" = "xno"; then
238 AC_MSG_RESULT([no (disabled by user)])
239else
Daniel Drake0bd7ef52009-11-21 16:57:25 +0000240 if test "x$timerfd_h" = "x1" -a "x$tfd_hdr_ok" = "xyes"; then
Daniel Drake47830082009-10-28 20:33:49 +0545241 AC_MSG_RESULT([yes])
Peter Stuge19d58822010-11-21 23:09:02 +0100242 AC_DEFINE(USBI_TIMERFD_AVAILABLE, 1, [timerfd headers available])
Daniel Drake47830082009-10-28 20:33:49 +0545243 else
244 AC_MSG_RESULT([no (header not available)])
245 fi
246fi
247
Pete Batard9a4249f2010-07-10 17:51:13 -0600248AC_CHECK_TYPES(struct timespec)
249
Daniel Drake852bba42007-11-28 13:48:45 +0000250# Message logging
251AC_ARG_ENABLE([log], [AS_HELP_STRING([--disable-log], [disable all logging])],
252 [log_enabled=$enableval],
253 [log_enabled='yes'])
254if test "x$log_enabled" != "xno"; then
255 AC_DEFINE([ENABLE_LOGGING], 1, [Message logging])
256fi
257
258AC_ARG_ENABLE([debug-log], [AS_HELP_STRING([--enable-debug-log],
Toby Gray9222a542013-07-09 16:05:39 +0100259 [start with debug message logging enabled [default=no]])],
Daniel Drake852bba42007-11-28 13:48:45 +0000260 [debug_log_enabled=$enableval],
261 [debug_log_enabled='no'])
262if test "x$debug_log_enabled" != "xno"; then
Pete Batardcf6e68a2012-05-31 18:31:34 +0100263 AC_DEFINE([ENABLE_DEBUG_LOGGING], 1, [Start with debug message logging enabled])
Daniel Drake852bba42007-11-28 13:48:45 +0000264fi
265
Toby Gray9222a542013-07-09 16:05:39 +0100266AC_ARG_ENABLE([system-log], [AS_HELP_STRING([--enable-system-log],
267 [output logging messages to system wide log, if supported by the OS [default=no]])],
268 [system_log_enabled=$enableval],
269 [system_log_enabled='no'])
270if test "x$system_log_enabled" != "xno"; then
271 AC_DEFINE([USE_SYSTEM_LOGGING_FACILITY], 1, [Enable output to system log])
272fi
273
274# Check if syslog is available in standard C library
275AC_CHECK_HEADERS(syslog.h)
276AC_CHECK_FUNC([syslog], [have_syslog=yes], [have_syslog=no])
277if test "x$have_syslog" != "xno"; then
278 AC_DEFINE([HAVE_SYSLOG_FUNC], 1, [syslog() function available])
279fi
280
Daniel Drake852bba42007-11-28 13:48:45 +0000281# Examples build
282AC_ARG_ENABLE([examples-build], [AS_HELP_STRING([--enable-examples-build],
Toby Gray9222a542013-07-09 16:05:39 +0100283 [build example applications [default=no]])],
Daniel Drake852bba42007-11-28 13:48:45 +0000284 [build_examples=$enableval],
285 [build_examples='no'])
286AM_CONDITIONAL([BUILD_EXAMPLES], [test "x$build_examples" != "xno"])
287
Toby Gray21cf6e42012-11-21 14:00:31 +0000288# Tests build
289AC_ARG_ENABLE([tests-build], [AS_HELP_STRING([--enable-tests-build],
Toby Gray9222a542013-07-09 16:05:39 +0100290 [build test applications [default=no]])],
Toby Gray21cf6e42012-11-21 14:00:31 +0000291 [build_tests=$enableval],
292 [build_tests='no'])
293AM_CONDITIONAL([BUILD_TESTS], [test "x$build_tests" != "xno"])
294
Alex Vatchenkob5017952009-05-28 15:58:50 -0400295# check for -fvisibility=hidden compiler support (GCC >= 3.4)
296saved_cflags="$CFLAGS"
Pete Batard9a4249f2010-07-10 17:51:13 -0600297# -Werror required for cygwin
298CFLAGS="$CFLAGS -Werror -fvisibility=hidden"
Peter Stuge44b85da2010-11-21 23:10:35 +0100299AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
Alex Vatchenkob5017952009-05-28 15:58:50 -0400300 [VISIBILITY_CFLAGS="-fvisibility=hidden"
Pete Batard29f9f9e2010-08-13 11:59:49 +0100301 AC_DEFINE([DEFAULT_VISIBILITY], [__attribute__((visibility("default")))], [Default visibility]) ],
Alex Vatchenkob5017952009-05-28 15:58:50 -0400302 [ VISIBILITY_CFLAGS=""
Pete Batard29f9f9e2010-08-13 11:59:49 +0100303 AC_DEFINE([DEFAULT_VISIBILITY], [], [Default visibility]) ],
Alex Vatchenkob5017952009-05-28 15:58:50 -0400304 ])
305CFLAGS="$saved_cflags"
Nathan Hjelmb49f6bf2009-02-16 21:39:29 -0300306
Alex Vatchenkob5017952009-05-28 15:58:50 -0400307# check for -Wno-pointer-sign compiler support (GCC >= 4)
308saved_cflags="$CFLAGS"
309CFLAGS="$CFLAGS -Wno-pointer-sign"
Peter Stuge44b85da2010-11-21 23:10:35 +0100310AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
Alex Vatchenkob5017952009-05-28 15:58:50 -0400311 nopointersign_cflags="-Wno-pointer-sign", nopointersign_cflags="")
312CFLAGS="$saved_cflags"
313
Daniel Drakea516fcb2010-07-21 17:49:21 -0600314# sigaction not available on MinGW
315AC_CHECK_FUNC([sigaction], [have_sigaction=yes], [have_sigaction=no])
316AM_CONDITIONAL([HAVE_SIGACTION], [test "x$have_sigaction" = "xyes"])
317
Daniel Drake7211aba2010-06-25 12:01:58 -0500318# headers not available on all platforms but required on others
319AC_CHECK_HEADERS([sys/time.h])
Peter Stuge463dda02012-05-06 17:04:00 +0000320AC_CHECK_FUNCS(gettimeofday)
Daniel Drake7211aba2010-06-25 12:01:58 -0500321
Akshay Jaggidc974252014-09-24 22:46:17 +0100322# check for -std=gnu99 compiler support
323saved_cflags="$CFLAGS"
324CFLAGS="-std=gnu99"
325AC_MSG_CHECKING([whether CC supports -std=gnu99])
326AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
327 [AC_MSG_RESULT([yes])]
328 [AM_CFLAGS="${AM_CFLAGS} -std=gnu99"],
329 [AC_MSG_RESULT([no])]
330)
331CFLAGS="$saved_cflags"
332
333AM_CFLAGS="${AM_CFLAGS} -Wall -Wundef -Wunused -Wstrict-prototypes -Werror-implicit-function-declaration $nopointersign_cflags -Wshadow ${THREAD_CFLAGS} ${VISIBILITY_CFLAGS}"
Alex Vatchenkob5017952009-05-28 15:58:50 -0400334
Daniel Drake852bba42007-11-28 13:48:45 +0000335AC_SUBST(AM_CFLAGS)
Peter Stuge717f4762010-11-15 19:58:51 +0100336AC_SUBST(LTLDFLAGS)
Daniel Drake852bba42007-11-28 13:48:45 +0000337
Peter Stugeef39d152011-02-25 02:33:29 +0100338AC_CONFIG_FILES([libusb-1.0.pc])
339AC_CONFIG_FILES([Makefile])
340AC_CONFIG_FILES([libusb/Makefile])
Peter Stugeef39d152011-02-25 02:33:29 +0100341AC_CONFIG_FILES([examples/Makefile])
Toby Gray21cf6e42012-11-21 14:00:31 +0000342AC_CONFIG_FILES([tests/Makefile])
Peter Stugeef39d152011-02-25 02:33:29 +0100343AC_CONFIG_FILES([doc/Makefile])
344AC_CONFIG_FILES([doc/doxygen.cfg])
Daniel Drake852bba42007-11-28 13:48:45 +0000345AC_OUTPUT