diff options
-rw-r--r-- | android/config.h | 3 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | libusb/io.c | 3 | ||||
-rw-r--r-- | libusb/version_nano.h | 2 | ||||
-rw-r--r-- | msvc/config.h | 1 |
5 files changed, 1 insertions, 9 deletions
diff --git a/android/config.h b/android/config.h index d36325e..78387d3 100644 --- a/android/config.h +++ b/android/config.h @@ -53,9 +53,6 @@ /* Define to 1 if you have the <poll.h> header file. */ #define HAVE_POLL_H 1 -/* Define to 1 if you have the <signal.h> header file. */ -#define HAVE_SIGNAL_H 1 - /* Define to 1 if you have the <sys/stat.h> header file. */ #define HAVE_SYS_STAT_H 1 diff --git a/configure.ac b/configure.ac index c00af33..7b79517 100644 --- a/configure.ac +++ b/configure.ac @@ -318,7 +318,6 @@ AM_CONDITIONAL([HAVE_SIGACTION], [test "x$have_sigaction" = "xyes"]) # headers not available on all platforms but required on others AC_CHECK_HEADERS([sys/time.h]) AC_CHECK_FUNCS(gettimeofday) -AC_CHECK_HEADERS([signal.h]) # check for -std=gnu99 compiler support saved_cflags="$CFLAGS" diff --git a/libusb/io.c b/libusb/io.c index 0026ba7..eb1eabf 100644 --- a/libusb/io.c +++ b/libusb/io.c @@ -27,9 +27,6 @@ #include <stdlib.h> #include <string.h> #include <time.h> -#ifdef HAVE_SIGNAL_H -#include <signal.h> -#endif #ifdef HAVE_SYS_TIME_H #include <sys/time.h> #endif diff --git a/libusb/version_nano.h b/libusb/version_nano.h index b6afcdd..d525e6d 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11168 +#define LIBUSB_NANO 11169 diff --git a/msvc/config.h b/msvc/config.h index 4f39d78..dc9280e 100644 --- a/msvc/config.h +++ b/msvc/config.h @@ -45,6 +45,5 @@ #define HAVE_MISSING_H #else #define OS_WINDOWS 1 -#define HAVE_SIGNAL_H 1 #define HAVE_SYS_TYPES_H 1 #endif |