From mboxrd@z Thu Jan 1 00:00:00 1970 From: Khem Raj Date: Sat, 9 Jan 2016 01:13:51 +0000 Subject: [LTP] [PATCH V2 03/32] Add knob to control tirpc support In-Reply-To: <1452302060-103643-1-git-send-email-raj.khem@gmail.com> References: <1452302060-103643-1-git-send-email-raj.khem@gmail.com> Message-ID: <1452302060-103643-3-git-send-email-raj.khem@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ltp@lists.linux.it From: Fathi Boudra allow to disable tirpc. Helps to disable it at top level for eg. musl it does not yet work. Signed-off-by: Fathi Boudra Signed-off-by: Khem Raj --- configure.ac | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configure.ac b/configure.ac index cc50397..9e2936b 100644 --- a/configure.ac +++ b/configure.ac @@ -98,6 +98,13 @@ if test "x$with_python" = xyes; then else AC_SUBST([WITH_PYTHON],["no"]) fi + +# TI RPC +AC_ARG_WITH([tirpc], + AC_HELP_STRING([--without-tirpc], + [without libtirpc support]), + [],[with_tirpc=yes], +) # END tools knobs # Testsuites knobs @@ -169,7 +176,9 @@ LTP_CHECK_RENAMEAT2 LTP_CHECK_FALLOCATE LTP_CHECK_SYSCALL_FCNTL LTP_CHECK_SYSCALL_PERF_EVENT_OPEN +if test "x$with_tirpc" = xyes; then LTP_CHECK_TIRPC +fi LTP_CHECK_TEE LTP_CHECK_SPLICE LTP_CHECK_VMSPLICE -- 2.7.0