From: Chris Dickens Date: Thu, 12 Jan 2017 17:59:13 +0000 (-0800) Subject: core: Remove check for and inclusion of signal.h X-Git-Tag: upstream/1.0.22~143 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80f1657f063d17c751b9532c1f4e56e1c23e699f;p=platform%2Fupstream%2Flibusb.git core: Remove check for and inclusion of signal.h Signed-off-by: Chris Dickens --- 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 header file. */ #define HAVE_POLL_H 1 -/* Define to 1 if you have the header file. */ -#define HAVE_SIGNAL_H 1 - /* Define to 1 if you have the 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 #include #include -#ifdef HAVE_SIGNAL_H -#include -#endif #ifdef HAVE_SYS_TIME_H #include #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