| From b193011da301b3d944e8fddcf4817513c31c5b88 Mon Sep 17 00:00:00 2001 |
| From: Fathi Boudra <fathi.boudra@linaro.org> |
| Date: Thu, 7 Jan 2016 17:36:19 +0000 |
| Subject: [PATCH 03/32] Add knob to control tirpc support |
| |
| allow to disable tirpc. Helps to disable it at top level for eg. musl it |
| does not yet work. |
| |
| Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> |
| Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| --- |
| 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 |
| |