Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,7 @@ dnl ######################################################################

AC_CHECK_LIB(m, sqrt)
AC_CHECK_LIB(rt, clock_gettime)
AC_CHECK_LIB(pthread, clock_gettime)
AC_CHECK_LIB(dl, dlopen)

dnl ######################################################################
Expand Down
4 changes: 0 additions & 4 deletions libutils/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,6 @@ struct utsname
# define IPV6_V6ONLY 27
# endif

// Not available in MinGW headers unless you raise WINVER and _WIN32_WINNT, but
// that is very badly supported in MinGW ATM.
ULONGLONG WINAPI GetTickCount64(void);

#else /* !__MINGW32__ */
# include <syslog.h>
#endif
Expand Down
2 changes: 2 additions & 0 deletions libutils/signal_lib.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#include <signal.h>

static inline void MaskTerminationSignalsInThread()
{
/* Mask termination signals in a thread so that they always end up in the
Expand Down
Loading