Wrapped MEMCACHED between [] characters in configure.ac

This commit is contained in:
Polonkai Gergely 2012-02-22 14:21:56 +00:00
parent d7863f51dd
commit a12152c6ed
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ AC_ARG_ENABLE([memcached], AS_HELP_STRING([--enable-memcached],[Build with memca
AM_CONDITIONAL([ENABLE_MEMCACHED], [test "$enable_memcached" = "yes"])
if test "$enable_memcached" = "yes"; then
PKG_CHECK_MODULES(MEMCACHED, libmemcached)
PKG_CHECK_MODULES([MEMCACHED], libmemcached)
AC_DEFINE([ENABLE_MEMCACHED], [1], [Define to compile with memcached support])
fi