From 852ccf04a4f175805f7fe08d886cc0a7cff8c383 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Sat, 18 Feb 2012 10:11:18 -0500 Subject: [PATCH] configure.ac: Quote macro arguments Signed-off-by: Anders Kaseorg --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 6e07eae..0fd1fc4 100644 --- a/configure.ac +++ b/configure.ac @@ -13,8 +13,8 @@ AC_PROG_CXX AC_PROG_RANLIB # Checks for libraries. -AC_SEARCH_LIBS([utempter_remove_added_record], [utempter], , AC_MSG_ERROR([Unable to find libutempter.])) -AX_BOOST_BASE(, , AC_MSG_ERROR([Unable to find boost libraries.])) +AC_SEARCH_LIBS([utempter_remove_added_record], [utempter], , [AC_MSG_ERROR([Unable to find libutempter.])]) +AX_BOOST_BASE(, , [AC_MSG_ERROR([Unable to find boost libraries.])]) # Checks for header files. AC_CHECK_HEADERS([arpa/inet.h fcntl.h langinfo.h limits.h locale.h netinet/in.h stddef.h stdint.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h termios.h unistd.h wchar.h wctype.h])