Skip to content

Commit 80f1657

Browse files
committed
core: Remove check for and inclusion of signal.h
Signed-off-by: Chris Dickens <[email protected]>
1 parent 322d146 commit 80f1657

File tree

5 files changed

+1
-9
lines changed

5 files changed

+1
-9
lines changed

android/config.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@
5353
/* Define to 1 if you have the <poll.h> header file. */
5454
#define HAVE_POLL_H 1
5555

56-
/* Define to 1 if you have the <signal.h> header file. */
57-
#define HAVE_SIGNAL_H 1
58-
5956
/* Define to 1 if you have the <sys/stat.h> header file. */
6057
#define HAVE_SYS_STAT_H 1
6158

configure.ac

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,6 @@ AM_CONDITIONAL([HAVE_SIGACTION], [test "x$have_sigaction" = "xyes"])
318318
# headers not available on all platforms but required on others
319319
AC_CHECK_HEADERS([sys/time.h])
320320
AC_CHECK_FUNCS(gettimeofday)
321-
AC_CHECK_HEADERS([signal.h])
322321

323322
# check for -std=gnu99 compiler support
324323
saved_cflags="$CFLAGS"

libusb/io.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@
2727
#include <stdlib.h>
2828
#include <string.h>
2929
#include <time.h>
30-
#ifdef HAVE_SIGNAL_H
31-
#include <signal.h>
32-
#endif
3330
#ifdef HAVE_SYS_TIME_H
3431
#include <sys/time.h>
3532
#endif

libusb/version_nano.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define LIBUSB_NANO 11168
1+
#define LIBUSB_NANO 11169

msvc/config.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,5 @@
4545
#define HAVE_MISSING_H
4646
#else
4747
#define OS_WINDOWS 1
48-
#define HAVE_SIGNAL_H 1
4948
#define HAVE_SYS_TYPES_H 1
5049
#endif

0 commit comments

Comments
 (0)