aboutsummaryrefslogtreecommitdiff
path: root/m4/libwrap.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/libwrap.m4')
-rw-r--r--m4/libwrap.m414
1 files changed, 0 insertions, 14 deletions
diff --git a/m4/libwrap.m4 b/m4/libwrap.m4
deleted file mode 100644
index 5ad3df19..00000000
--- a/m4/libwrap.m4
+++ /dev/null
@@ -1,14 +0,0 @@
-dnl
-dnl Usage:
-dnl AC_CHECK_LIBWRAP([ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
-dnl
-
-AC_DEFUN([AC_CHECK_LIBWRAP],[
- AC_CHECK_HEADERS([tcpd.h],
- AC_CHECK_LIB([wrap], [request_init],
- [LIBWRAP_CFLAGS=""
- LIBWRAP_LDFLAGS="-lwrap"
- $1],
- $2),
- $2)
-])