M4 macro call fix for AC_DEFINE

This commit is contained in:
Polonkai Gergely 2012-03-22 18:58:39 +00:00
parent cf01fddc15
commit 0302c84815

View File

@ -21,7 +21,7 @@ if test "$enable_memcached" = "yes"; then
fi fi
AC_DEFINE([DEFAULT_PORT], [4000], [The default port number if not specified in the config file]) AC_DEFINE([DEFAULT_PORT], [4000], [The default port number if not specified in the config file])
AC_DEFINE([MAX_RECV_LEN], [1024]) AC_DEFINE([MAX_RECV_LEN], [1024], [The maximum length of the recv() queue in bytes])
PKG_CHECK_MODULES([GIO], gio-2.0) PKG_CHECK_MODULES([GIO], gio-2.0)
PKG_CHECK_MODULES([GLIB], glib-2.0) PKG_CHECK_MODULES([GLIB], glib-2.0)