From b5e33bfefa774f12226aa6170854b17ede195d67 Mon Sep 17 00:00:00 2001 From: Simon Boulet Date: Thu, 29 Jan 2015 16:34:39 -0500 Subject: [PATCH] Fix flock being always disabled --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7477fa7c..b3d34a1a 100644 --- a/configure.ac +++ b/configure.ac @@ -152,7 +152,7 @@ AC_ARG_ENABLE([flock], AS_HELP_STRING([--disable-flock],[disable file locking]), [], [enable_flock=yes]) -if test x$enable_file != xyes; then +if test x$enable_flock != xyes; then AC_DEFINE([DISABLE_FLOCK], [], [disable flock calls in rrdtool]) fi -- 2.47.2