|
From: <sv...@va...> - 2015-02-02 22:41:02
|
Author: philippe
Date: Mon Feb 2 22:40:54 2015
New Revision: 14899
Log:
PTRACE_GETREGS might not be detected on some distro, due to a missing #include
in the configure test.
Modified:
trunk/configure.ac
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Mon Feb 2 22:40:54 2015
@@ -1084,6 +1084,7 @@
AC_MSG_CHECKING([for PTRACE_GETREGS])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+#include <stdlib.h>
#include <stddef.h>
#include <sys/ptrace.h>
#include <sys/user.h>
|