summaryrefslogtreecommitdiffstats
path: root/aclocal/libevent.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 06:03:02 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 06:03:02 +0000
commit4897093455a2bf08f3db3a1132cc2f6f5484d77c (patch)
tree9e6373544263f003139431fb4b08f9766e1ed530 /aclocal/libevent.m4
parentInitial commit. (diff)
downloadnfs-utils-4897093455a2bf08f3db3a1132cc2f6f5484d77c.tar.xz
nfs-utils-4897093455a2bf08f3db3a1132cc2f6f5484d77c.zip
Adding upstream version 1:2.6.4.upstream/1%2.6.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'aclocal/libevent.m4')
-rw-r--r--aclocal/libevent.m412
1 files changed, 12 insertions, 0 deletions
diff --git a/aclocal/libevent.m4 b/aclocal/libevent.m4
new file mode 100644
index 0000000..e0b820b
--- /dev/null
+++ b/aclocal/libevent.m4
@@ -0,0 +1,12 @@
+dnl Checks for libevent
+AC_DEFUN([AC_LIBEVENT], [
+
+ dnl Check for libevent, but do not add -levent_core to LIBS
+ AC_CHECK_LIB([event_core], [event_base_dispatch], [LIBEVENT=-levent_core],
+ [AC_MSG_ERROR([libevent not found.])])
+ AC_SUBST(LIBEVENT)
+
+ AC_CHECK_HEADERS([event2/event.h], ,
+ [AC_MSG_ERROR([libevent headers not found.])])
+
+])dnl