From c56af574cab3a308a76def3123630397b207994a Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 12 Jun 2013 18:17:44 +0100 Subject: [PATCH] build: Fix warning message on syscall failures --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 7f3a6947..7ca70daf 100644 --- a/configure.ac +++ b/configure.ac @@ -42,13 +42,13 @@ AC_SUBST(GCC_CFLAGS) AC_CHECK_FUNCS([accept4 mkostemp]) AC_CHECK_DECL(SFD_CLOEXEC,[], - [AC_MSG_ERROR("SFD_CLOEXEC is needed to compile weston")], + [AC_MSG_ERROR("SFD_CLOEXEC is needed to compile wayland")], [[#include ]]) AC_CHECK_DECL(TFD_CLOEXEC,[], - [AC_MSG_ERROR("TFD_CLOEXEC is needed to compile weston")], + [AC_MSG_ERROR("TFD_CLOEXEC is needed to compile wayland")], [[#include ]]) AC_CHECK_DECL(CLOCK_MONOTONIC,[], - [AC_MSG_ERROR("CLOCK_MONOTONIC is needed to compile weston")], + [AC_MSG_ERROR("CLOCK_MONOTONIC is needed to compile wayland")], [[#include ]]) AC_CHECK_HEADERS([execinfo.h])