aboutsummaryrefslogtreecommitdiff
path: root/m4/libwrap.m4
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-04-22 11:31:06 +0200
committerAnton Khirnov <anton@khirnov.net>2013-11-04 11:02:10 +0100
commit6fd304e5e6c8b386d3671f4932a74124fd37192a (patch)
tree0110c5339a4fe42276017f1fd74373baa1e25f22 /m4/libwrap.m4
parentd3018bfbb5f5712e6fe0f7ce534a362a0518d2c2 (diff)
Switch from autotools to a custom build system adapted from Libav.
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)
-])