diff options
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | tests/drmstat.c | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d3dc1542..b257ccf6 100644 --- a/configure.ac +++ b/configure.ac @@ -32,6 +32,7 @@ AC_PROG_CC AC_HEADER_STDC AC_SYS_LARGEFILE +AC_FUNC_ALLOCA PKG_CHECK_MODULES(PTHREADSTUBS, pthread-stubs) AC_SUBST(PTHREADSTUBS_CFLAGS) diff --git a/tests/drmstat.c b/tests/drmstat.c index ed2aeb61..e2e75234 100644 --- a/tests/drmstat.c +++ b/tests/drmstat.c @@ -28,6 +28,8 @@ * */ +#include "config.h" + #include <stdio.h> #include <stdlib.h> #include <unistd.h> @@ -39,6 +41,9 @@ #include <errno.h> #include <signal.h> #include <fcntl.h> +#ifdef HAVE_ALLOCA_H +# include <alloca.h> +#endif #include "xf86drm.h" int sigio_fd; |