From 50ee6f2187c0d707d767f09bde35bf4ad1d807f9 Mon Sep 17 00:00:00 2001 From: mheily Date: Sun, 8 Aug 2010 00:23:19 +0000 Subject: [PATCH] fix compilation on freebsd git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@292 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7 --- config.inc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.inc b/config.inc index a698129..5cd1d99 100644 --- a/config.inc +++ b/config.inc @@ -75,6 +75,15 @@ post_configure_hook() { sources="$sources src/posix/eventfd.c" fi + # FIXME: This will compile but not actually work + if [ $target = "freebsd" ] ; then + evfilt_signal="src/posix/signal.c" + evfilt_proc="" + evfilt_socket="" + evfilt_timer="" + evfilt_vnode="" + fi + sources="$sources src/posix/kevent.c $evfilt_signal $evfilt_proc $evfilt_socket $evfilt_timer $evfilt_user $evfilt_vnode" }