From 194e4216c8e30612f96f8f3712fdb3f1c96b3a08 Mon Sep 17 00:00:00 2001 From: Yaniv Kaul Date: Tue, 3 Dec 2019 12:57:13 +0200 Subject: [RFC]#ifdef gNFS related code if we are not compiling gNFS If we are not compiling gNFS (--enable-gnfs is not given in the ./configure script params), there is little point in compiling code that is related to it. This patch tries to eliminate it. My hope (and it's not clear from the code ) is that I did not break the NFS Ganesha support as well. Other than that, tried to compile with and without anad it looks sane. Change-Id: I8d6c98066b9fceab4ec10fc6f5e81ab069e853bd updates: bz#1193929 Signed-off-by: Yaniv Kaul --- configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 772958df9c..d9af961edf 100644 --- a/configure.ac +++ b/configure.ac @@ -1317,6 +1317,7 @@ AC_ARG_ENABLE([gnfs], [Enable legacy gnfs server xlator.])) if test "x${with_server}" = "xyes" -a "x$enable_gnfs" = "xyes"; then BUILD_GNFS="yes" + GF_CFLAGS="$GF_CFLAGS -DBUILD_GNFS" RPCBIND_SERVICE="rpcbind.service" fi AM_CONDITIONAL([BUILD_GNFS], [test x$BUILD_GNFS = xyes]) -- cgit