blob: c0347b9f03f8f2b36ff32c2bf80c0727853fcbd7 [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
Chris Dickenscb77a252017-02-20 00:18:33 -080024lt_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])
Chris Dickenscb77a252017-02-20 00:18:33 -080053 is_backend_android=yes
Kuangye Guo7e3de5d2013-10-21 18:36:15 -070054 ;;
55*)
Chris Dickenscb77a252017-02-20 00:18:33 -080056 is_backend_android=no
Kuangye Guo7e3de5d2013-10-21 18:36:15 -070057esac
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])
Chris Dickenscb77a252017-02-20 00:18:33 -080062 backend=linux
63 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])
Chris Dickenscb77a252017-02-20 00:18:33 -080067 backend=darwin
68 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])
Chris Dickenscb77a252017-02-20 00:18:33 -080072 backend=openbsd
73 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])
Chris Dickenscb77a252017-02-20 00:18:33 -080077 backend=netbsd
78 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])
Chris Dickenscb77a252017-02-20 00:18:33 -080082 backend=windows
83 threads=windows
84 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)])
Chris Dickenscb77a252017-02-20 00:18:33 -080089 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])
Chris Dickenscb77a252017-02-20 00:18:33 -080094 backend=haiku
95 threads=posix
Akshay Jaggidc974252014-09-24 22:46:17 +010096 ;;
Lei Cheneefd3222016-02-19 11:58:39 +080097*-solaris*)
98 AC_MSG_RESULT([SunOS])
Chris Dickenscb77a252017-02-20 00:18:33 -080099 backend=sunos
100 threads=posix
Lei Cheneefd3222016-02-19 11:58:39 +0800101 ;;
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)
Chris Dickenscb77a252017-02-20 00:18:33 -0800110 AC_SEARCH_LIBS([clock_gettime2], [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]])],
Chris Dickenscb77a252017-02-20 00:18:33 -0800113 [], [enable_udev=yes])
114 if test "x$enable_udev" = xyes ; then
Nathan Hjelm68532912012-11-29 16:14:03 -0700115 # system has udev. use it or fail!
Chris Dickenscb77a252017-02-20 00:18:33 -0800116 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 Hjelm68532912012-11-29 16:14:03 -0700118 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], [], [])
Chris Dickenscb77a252017-02-20 00:18:33 -0800121 AC_CHECK_HEADERS([sys/socket.h linux/netlink.h], [], [AC_MSG_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
Chris Dickens068b5942017-01-12 11:01:59 -0800130 if test "x$is_backend_android" != xyes; then
131 THREAD_CFLAGS="-pthread"
132 LIBS="${LIBS} -pthread"
133 fi
Kuangye Guo7e3de5d2013-10-21 18:36:15 -0700134
Pete Batard968df122012-04-19 18:01:04 +0100135 AC_CHECK_HEADERS([poll.h])
136 AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])
137 ;;
138darwin)
139 AC_DEFINE(OS_DARWIN, 1, [Darwin backend])
140 AC_SUBST(OS_DARWIN)
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000141 LIBS="-lobjc -Wl,-framework,IOKit -Wl,-framework,CoreFoundation"
Pete Batard968df122012-04-19 18:01:04 +0100142 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 Goedeeb4e7be2013-08-21 16:18:39 +0200149openbsd)
150 AC_DEFINE(OS_OPENBSD, 1, [OpenBSD backend])
Pete Batard968df122012-04-19 18:01:04 +0100151 AC_SUBST(OS_OPENBSD)
152 THREAD_CFLAGS="-pthread"
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000153 LIBS="-pthread"
Pete Batard968df122012-04-19 18:01:04 +0100154 AC_CHECK_HEADERS([poll.h])
155 AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])
156 ;;
Lei Cheneefd3222016-02-19 11:58:39 +0800157sunos)
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 Goedeeb4e7be2013-08-21 16:18:39 +0200165netbsd)
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 Batard968df122012-04-19 18:01:04 +0100173windows)
Peter Stuge1a2d21f2011-02-26 04:21:05 +0100174 AC_DEFINE(OS_WINDOWS, 1, [Windows backend])
175 AC_SUBST(OS_WINDOWS)
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000176 LIBS=""
Peter Stuge1a2d21f2011-02-26 04:21:05 +0100177 LTLDFLAGS="${LTLDFLAGS} -avoid-version -Wl,--add-stdcall-alias"
Peter Stuge1a2d21f2011-02-26 04:21:05 +0100178 AC_DEFINE([POLL_NFDS_TYPE],[unsigned int],[type of second poll() argument])
Tormod Volden4e95d0e2014-09-02 19:25:00 +0100179 AC_DEFINE([WINVER], 0x0501, [Oldest Windows version supported])
Dmitry Fleytman24c52892016-01-20 17:05:55 +0200180
181 AC_ARG_ENABLE([usbdk],
182 [AC_HELP_STRING([--enable-usbdk], [use UsbDk Windows backend [default=no]])],
Chris Dickenscb77a252017-02-20 00:18:33 -0800183 [], [enable_usbdk=no])
Chris Dickens94178682017-01-12 13:50:35 -0800184 if test "x$enable_usbdk" = xyes; then
Dmitry Fleytman24c52892016-01-20 17:05:55 +0200185 AC_DEFINE(USE_USBDK, 1, [Use UsbDk Windows backend])
186 fi
187 AC_SUBST(USE_USBDK)
Pete Batard968df122012-04-19 18:01:04 +0100188 ;;
Akshay Jaggidc974252014-09-24 22:46:17 +0100189haiku)
190 AC_DEFINE(OS_HAIKU, 1, [Haiku backend])
191 AC_SUBST(OS_HAIKU)
192 LIBS="${LIBS} -lbe"
193 AC_CHECK_HEADERS([poll.h])
194 AC_DEFINE([POLL_NFDS_TYPE],[nfds_t],[type of second poll() argument])
195 ;;
Pete Batard968df122012-04-19 18:01:04 +0100196esac
197
Peter Stuge94b0ccc2012-10-23 00:15:23 +0000198AC_SUBST(LIBS)
Daniel Drakec0c94322008-03-13 12:36:56 +0000199
Peter Stugec24649d2010-10-30 22:28:59 +0200200AM_CONDITIONAL(OS_LINUX, test "x$backend" = xlinux)
201AM_CONDITIONAL(OS_DARWIN, test "x$backend" = xdarwin)
Hans de Goedeeb4e7be2013-08-21 16:18:39 +0200202AM_CONDITIONAL(OS_OPENBSD, test "x$backend" = xopenbsd)
Lei Cheneefd3222016-02-19 11:58:39 +0800203AM_CONDITIONAL(OS_SUNOS, test "x$backend" = xsunos)
Hans de Goedeeb4e7be2013-08-21 16:18:39 +0200204AM_CONDITIONAL(OS_NETBSD, test "x$backend" = xnetbsd)
Peter Stugec24649d2010-10-30 22:28:59 +0200205AM_CONDITIONAL(OS_WINDOWS, test "x$backend" = xwindows)
Akshay Jaggidc974252014-09-24 22:46:17 +0100206AM_CONDITIONAL(OS_HAIKU, test "x$backend" = xhaiku)
Peter Stugec24649d2010-10-30 22:28:59 +0200207AM_CONDITIONAL(THREADS_POSIX, test "x$threads" = xposix)
Chris Dickens94178682017-01-12 13:50:35 -0800208AM_CONDITIONAL(CREATE_IMPORT_LIB, test "x$create_import_lib" = xyes)
Nathan Hjelm68532912012-11-29 16:14:03 -0700209AM_CONDITIONAL(USE_UDEV, test "x$enable_udev" = xyes)
Dmitry Fleytman24c52892016-01-20 17:05:55 +0200210AM_CONDITIONAL(USE_USBDK, test "x$enable_usbdk" = xyes)
Chris Dickenscb77a252017-02-20 00:18:33 -0800211if test "x$threads" = xposix; then
Peter Stugec24649d2010-10-30 22:28:59 +0200212 AC_DEFINE(THREADS_POSIX, 1, [Use POSIX Threads])
213fi
Daniel Drakec0c94322008-03-13 12:36:56 +0000214
Daniel Drake47830082009-10-28 20:33:49 +0545215# timerfd
216AC_CHECK_HEADER([sys/timerfd.h], [timerfd_h=1], [timerfd_h=0])
217AC_ARG_ENABLE([timerfd],
218 [AS_HELP_STRING([--enable-timerfd],
Toby Gray9222a542013-07-09 16:05:39 +0100219 [use timerfd for timing [default=auto]])],
Chris Dickenscb77a252017-02-20 00:18:33 -0800220 [use_timerfd=$enableval], [use_timerfd=auto])
Daniel Drake47830082009-10-28 20:33:49 +0545221
Chris Dickens94178682017-01-12 13:50:35 -0800222if test "x$use_timerfd" = xyes -a "x$timerfd_h" = x0; then
Daniel Drake0bd7ef52009-11-21 16:57:25 +0000223 AC_MSG_ERROR([timerfd header not available; glibc 2.9+ required])
224fi
225
226AC_CHECK_DECL([TFD_NONBLOCK], [tfd_hdr_ok=yes], [tfd_hdr_ok=no], [#include <sys/timerfd.h>])
Chris Dickens94178682017-01-12 13:50:35 -0800227if test "x$use_timerfd" = xyes -a "x$tfd_hdr_ok" = xno; then
Daniel Drake0bd7ef52009-11-21 16:57:25 +0000228 AC_MSG_ERROR([timerfd header not usable; glibc 2.9+ required])
Daniel Drake47830082009-10-28 20:33:49 +0545229fi
230
231AC_MSG_CHECKING([whether to use timerfd for timing])
Chris Dickens94178682017-01-12 13:50:35 -0800232if test "x$use_timerfd" = xno; then
Daniel Drake47830082009-10-28 20:33:49 +0545233 AC_MSG_RESULT([no (disabled by user)])
234else
Chris Dickens94178682017-01-12 13:50:35 -0800235 if test "x$timerfd_h" = x1 -a "x$tfd_hdr_ok" = xyes; then
Daniel Drake47830082009-10-28 20:33:49 +0545236 AC_MSG_RESULT([yes])
Peter Stuge19d58822010-11-21 23:09:02 +0100237 AC_DEFINE(USBI_TIMERFD_AVAILABLE, 1, [timerfd headers available])
Daniel Drake47830082009-10-28 20:33:49 +0545238 else
239 AC_MSG_RESULT([no (header not available)])
240 fi
241fi
242
Chris Dickenscb77a252017-02-20 00:18:33 -0800243AC_CHECK_TYPES([struct timespec])
Pete Batard9a4249f2010-07-10 17:51:13 -0600244
Daniel Drake852bba42007-11-28 13:48:45 +0000245# Message logging
246AC_ARG_ENABLE([log], [AS_HELP_STRING([--disable-log], [disable all logging])],
247 [log_enabled=$enableval],
Chris Dickenscb77a252017-02-20 00:18:33 -0800248 [log_enabled=yes])
Chris Dickens94178682017-01-12 13:50:35 -0800249if test "x$log_enabled" != xno; then
Daniel Drake852bba42007-11-28 13:48:45 +0000250 AC_DEFINE([ENABLE_LOGGING], 1, [Message logging])
251fi
252
253AC_ARG_ENABLE([debug-log], [AS_HELP_STRING([--enable-debug-log],
Toby Gray9222a542013-07-09 16:05:39 +0100254 [start with debug message logging enabled [default=no]])],
Daniel Drake852bba42007-11-28 13:48:45 +0000255 [debug_log_enabled=$enableval],
Chris Dickenscb77a252017-02-20 00:18:33 -0800256 [debug_log_enabled=no])
Chris Dickens94178682017-01-12 13:50:35 -0800257if test "x$debug_log_enabled" != xno; then
Pete Batardcf6e68a2012-05-31 18:31:34 +0100258 AC_DEFINE([ENABLE_DEBUG_LOGGING], 1, [Start with debug message logging enabled])
Daniel Drake852bba42007-11-28 13:48:45 +0000259fi
260
Toby Gray9222a542013-07-09 16:05:39 +0100261AC_ARG_ENABLE([system-log], [AS_HELP_STRING([--enable-system-log],
262 [output logging messages to system wide log, if supported by the OS [default=no]])],
263 [system_log_enabled=$enableval],
Chris Dickenscb77a252017-02-20 00:18:33 -0800264 [system_log_enabled=no])
Chris Dickens94178682017-01-12 13:50:35 -0800265if test "x$system_log_enabled" != xno; then
Toby Gray9222a542013-07-09 16:05:39 +0100266 AC_DEFINE([USE_SYSTEM_LOGGING_FACILITY], 1, [Enable output to system log])
Toby Gray9222a542013-07-09 16:05:39 +0100267
Chris Dickens94178682017-01-12 13:50:35 -0800268 # Check if syslog is available in standard C library
269 AC_CHECK_HEADERS(syslog.h)
270 AC_CHECK_FUNC([syslog], [have_syslog=yes], [have_syslog=no])
271 if test "x$have_syslog" != xno; then
272 AC_DEFINE([HAVE_SYSLOG_FUNC], 1, [syslog() function available])
273 fi
Toby Gray9222a542013-07-09 16:05:39 +0100274fi
275
Daniel Drake852bba42007-11-28 13:48:45 +0000276# Examples build
277AC_ARG_ENABLE([examples-build], [AS_HELP_STRING([--enable-examples-build],
Toby Gray9222a542013-07-09 16:05:39 +0100278 [build example applications [default=no]])],
Daniel Drake852bba42007-11-28 13:48:45 +0000279 [build_examples=$enableval],
Chris Dickenscb77a252017-02-20 00:18:33 -0800280 [build_examples=no])
Chris Dickens94178682017-01-12 13:50:35 -0800281AM_CONDITIONAL(BUILD_EXAMPLES, test "x$build_examples" != xno)
Daniel Drake852bba42007-11-28 13:48:45 +0000282
Toby Gray21cf6e42012-11-21 14:00:31 +0000283# Tests build
284AC_ARG_ENABLE([tests-build], [AS_HELP_STRING([--enable-tests-build],
Toby Gray9222a542013-07-09 16:05:39 +0100285 [build test applications [default=no]])],
Toby Gray21cf6e42012-11-21 14:00:31 +0000286 [build_tests=$enableval],
Chris Dickenscb77a252017-02-20 00:18:33 -0800287 [build_tests=no])
Chris Dickens94178682017-01-12 13:50:35 -0800288AM_CONDITIONAL(BUILD_TESTS, test "x$build_tests" != xno)
289
290# headers not available on all platforms but required on others
291AC_CHECK_HEADERS([sys/time.h])
292
293# sigaction not available on MinGW
294AC_CHECK_FUNC([sigaction], [have_sigaction=yes], [have_sigaction=no])
295AM_CONDITIONAL(HAVE_SIGACTION, test "x$have_sigaction" = xyes)
Toby Gray21cf6e42012-11-21 14:00:31 +0000296
Alex Vatchenkob5017952009-05-28 15:58:50 -0400297# check for -fvisibility=hidden compiler support (GCC >= 3.4)
298saved_cflags="$CFLAGS"
Pete Batard9a4249f2010-07-10 17:51:13 -0600299# -Werror required for cygwin
300CFLAGS="$CFLAGS -Werror -fvisibility=hidden"
Peter Stuge44b85da2010-11-21 23:10:35 +0100301AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
Alex Vatchenkob5017952009-05-28 15:58:50 -0400302 [VISIBILITY_CFLAGS="-fvisibility=hidden"
Chris Dickenscb77a252017-02-20 00:18:33 -0800303 AC_DEFINE([DEFAULT_VISIBILITY], [__attribute__((visibility("default")))], [Default visibility])],
304 [VISIBILITY_CFLAGS=""
305 AC_DEFINE([DEFAULT_VISIBILITY], [], [Default visibility])],
Alex Vatchenkob5017952009-05-28 15:58:50 -0400306 ])
307CFLAGS="$saved_cflags"
Nathan Hjelmb49f6bf2009-02-16 21:39:29 -0300308
Alex Vatchenkob5017952009-05-28 15:58:50 -0400309# check for -Wno-pointer-sign compiler support (GCC >= 4)
310saved_cflags="$CFLAGS"
311CFLAGS="$CFLAGS -Wno-pointer-sign"
Peter Stuge44b85da2010-11-21 23:10:35 +0100312AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
Alex Vatchenkob5017952009-05-28 15:58:50 -0400313 nopointersign_cflags="-Wno-pointer-sign", nopointersign_cflags="")
314CFLAGS="$saved_cflags"
315
Akshay Jaggidc974252014-09-24 22:46:17 +0100316# check for -std=gnu99 compiler support
317saved_cflags="$CFLAGS"
318CFLAGS="-std=gnu99"
319AC_MSG_CHECKING([whether CC supports -std=gnu99])
320AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
321 [AC_MSG_RESULT([yes])]
322 [AM_CFLAGS="${AM_CFLAGS} -std=gnu99"],
323 [AC_MSG_RESULT([no])]
324)
325CFLAGS="$saved_cflags"
326
327AM_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 -0400328
Daniel Drake852bba42007-11-28 13:48:45 +0000329AC_SUBST(AM_CFLAGS)
Peter Stuge717f4762010-11-15 19:58:51 +0100330AC_SUBST(LTLDFLAGS)
Daniel Drake852bba42007-11-28 13:48:45 +0000331
Peter Stugeef39d152011-02-25 02:33:29 +0100332AC_CONFIG_FILES([libusb-1.0.pc])
333AC_CONFIG_FILES([Makefile])
334AC_CONFIG_FILES([libusb/Makefile])
Peter Stugeef39d152011-02-25 02:33:29 +0100335AC_CONFIG_FILES([examples/Makefile])
Toby Gray21cf6e42012-11-21 14:00:31 +0000336AC_CONFIG_FILES([tests/Makefile])
Peter Stugeef39d152011-02-25 02:33:29 +0100337AC_CONFIG_FILES([doc/Makefile])
338AC_CONFIG_FILES([doc/doxygen.cfg])
Daniel Drake852bba42007-11-28 13:48:45 +0000339AC_OUTPUT