From 29518656e1ef27294c458a54f3ef185ed657747a Mon Sep 17 00:00:00 2001 From: tedbullock Date: Wed, 30 Jul 2008 20:11:06 +0000 Subject: [PATCH] Make sure libevent check is properly quoted --- httperf/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httperf/configure.ac b/httperf/configure.ac index 9be5bfa..0a1e5c4 100755 --- a/httperf/configure.ac +++ b/httperf/configure.ac @@ -35,7 +35,7 @@ AC_CHECK_LIB(ssl, SSL_version, , AC_MSG_WARN([SSL Disabled]) ) AC_CHECK_LIB([event], [event_init], , - AC_MSG_ERROR([libevent is required to build idleconn]) ) + [AC_MSG_ERROR([libevent is required to build idleconn])]) # The following checks are for solaris and its ilk AC_SEARCH_LIBS([getsockopt], [socket]) AC_SEARCH_LIBS([socket], [socket nsl])