aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--src/util/scheduler.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 676e75bad..9f5da334e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -417,7 +417,7 @@ AC_HEADER_STDC
417AC_CHECK_HEADERS([fcntl.h math.h errno.h ctype.h limits.h stdio.h stdlib.h string.h unistd.h stdarg.h signal.h locale.h sys/stat.h sys/types.h],,AC_MSG_ERROR([Compiling GNUnet requires standard UNIX headers files])) 417AC_CHECK_HEADERS([fcntl.h math.h errno.h ctype.h limits.h stdio.h stdlib.h string.h unistd.h stdarg.h signal.h locale.h sys/stat.h sys/types.h],,AC_MSG_ERROR([Compiling GNUnet requires standard UNIX headers files]))
418 418
419# Checks for headers that are only required on some systems or opional (and where we do NOT abort if they are not there) 419# Checks for headers that are only required on some systems or opional (and where we do NOT abort if they are not there)
420AC_CHECK_HEADERS([langinfo.h sys/param.h sys/mount.h sys/statvfs.h sys/select.h sockLib.h sys/mman.h sys/msg.h sys/vfs.h arpa/inet.h fcntl.h libintl.h netdb.h netinet/in.h netinet/in_systm.h sys/ioctl.h sys/socket.h sys/time.h unistd.h kstat.h sys/sysinfo.h kvm.h sys/file.h sys/resource.h ifaddrs.h mach/mach.h stddef.h sys/timeb.h terminos.h argz.h ucred.h endian.h sys/endian.h]) 420AC_CHECK_HEADERS([langinfo.h sys/param.h sys/mount.h sys/statvfs.h sys/select.h sockLib.h sys/mman.h sys/msg.h sys/vfs.h arpa/inet.h fcntl.h libintl.h netdb.h netinet/in.h netinet/in_systm.h sys/ioctl.h sys/socket.h sys/time.h unistd.h kstat.h sys/sysinfo.h kvm.h sys/file.h sys/resource.h ifaddrs.h mach/mach.h stddef.h sys/timeb.h terminos.h argz.h ucred.h endian.h sys/endian.h execinfo.h])
421 421
422SAVE_LDFLAGS=$LDFLAGS 422SAVE_LDFLAGS=$LDFLAGS
423SAVE_CPPFLAGS=$CPPFLAGS 423SAVE_CPPFLAGS=$CPPFLAGS
diff --git a/src/util/scheduler.c b/src/util/scheduler.c
index 45cc02086..abf351701 100644
--- a/src/util/scheduler.c
+++ b/src/util/scheduler.c
@@ -36,7 +36,7 @@
36#define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util-scheduler", syscall) 36#define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util-scheduler", syscall)
37 37
38 38
39#ifdef LINUX 39#if HAVE_EXECINFO_H
40#include "execinfo.h" 40#include "execinfo.h"
41 41
42/** 42/**