summaryrefslogtreecommitdiffstats
path: root/src/conf_macros.m4
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r--src/conf_macros.m416
1 files changed, 16 insertions, 0 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4
index 87e1eefe1..1c3162668 100644
--- a/src/conf_macros.m4
+++ b/src/conf_macros.m4
@@ -635,3 +635,19 @@ AC_DEFUN([WITH_SSH],
fi
AM_CONDITIONAL([BUILD_SSH], [test x"$with_ssh" = xyes])
])
+
+AC_DEFUN([WITH_IFP],
+ [ AC_ARG_WITH([infopipe],
+ [AC_HELP_STRING([--with-infopipe],
+ [Whether to build with InfoPipe support [yes]]
+ )
+ ],
+ [with_infopipe=$withval],
+ with_infopipe=yes
+ )
+
+ if test x"$with_infopipe" = xyes; then
+ AC_DEFINE(BUILD_IFP, 1, [whether to build with InfoPipe support])
+ fi
+ AM_CONDITIONAL([BUILD_IFP], [test x"$with_infopipe" = xyes])
+ ])