mirror of
https://github.com/darlinghq/darling-libkqueue.git
synced 2024-12-05 02:06:27 +00:00
45f04b4d6c
git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@336 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
97 lines
2.6 KiB
PHP
97 lines
2.6 KiB
PHP
program="libkqueue"
|
|
version="0.9.3"
|
|
abi_major="0"
|
|
abi_minor="0"
|
|
abi_version="$abi_major.$abi_minor"
|
|
cflags="-fpic -Wall -Werror -g -O2 -std=c99 -D_XOPEN_SOURCE=600"
|
|
ldflags=""
|
|
sources="src/common/filter.c src/common/knote.c
|
|
src/common/kevent.c src/common/kqueue.c"
|
|
libdepends=""
|
|
deps="src/common/private.h"
|
|
mans="kqueue.2"
|
|
headers="src/common/private.h"
|
|
extra_dist="*.in"
|
|
subdirs="src include test"
|
|
|
|
# Package metadata
|
|
pkg_summary="Emulates the kqueue and kevent system calls"
|
|
pkg_description="Emulates the kqueue and kevent system calls"
|
|
license="BSD"
|
|
author="Mark Heily"
|
|
|
|
pre_configure_hook() {
|
|
if [ "$debug" = "yes" ] ; then
|
|
cflags="$cflags -g3 -O0 -rdynamic"
|
|
fi
|
|
|
|
optional_headers="err.h"
|
|
|
|
libdepends=" -L$libdir"
|
|
if [ $target = "linux" ] ; then
|
|
|
|
check_symbol sys/epoll.h EPOLLRDHUP
|
|
|
|
# Actually a GCC 4.X dependency
|
|
cflags="$cflags -fvisibility=hidden"
|
|
|
|
libdepends="$libdepends -lpthread -lrt"
|
|
required_headers="sys/epoll.h sys/inotify.h"
|
|
optional_headers="sys/signalfd.h sys/timerfd.h sys/eventfd.h"
|
|
fi
|
|
|
|
if [ $target = "solaris" ] ; then
|
|
cflags="$cflags -m64"
|
|
ldflags="$ldflags -m64"
|
|
libdepends="$libdepends -lsocket -lnsl"
|
|
fi
|
|
}
|
|
|
|
post_configure_hook() {
|
|
finalize target "$target"
|
|
|
|
kevent="src/posix/kevent.c"
|
|
evfilt_signal="src/posix/signal.c"
|
|
evfilt_proc="src/$target/proc.c"
|
|
evfilt_socket="src/$target/socket.c"
|
|
evfilt_timer="src/posix/timer.c"
|
|
evfilt_user="src/posix/user.c"
|
|
evfilt_vnode="src/$target/vnode.c"
|
|
eventfd="src/posix/eventfd.c"
|
|
|
|
if [ $target = "linux" ] ; then
|
|
# FIXME: not tested
|
|
#if [ "$have_sys_signalfd_h" = "yes" ] ; then
|
|
# evfilt_signal="src/linux/signal.c"
|
|
#fi
|
|
if [ "$have_sys_timerfd_h" = "yes" ] ; then
|
|
evfilt_timer="src/linux/timer.c"
|
|
fi
|
|
if [ "$have_sys_eventfd_h" = "yes" ] ; then
|
|
eventfd="src/linux/eventfd.c"
|
|
fi
|
|
fi
|
|
|
|
if [ $target = "solaris" ] ; then
|
|
cflags="$cflags -D__EXTENSIONS__"
|
|
kevent="src/solaris/kevent.c"
|
|
evfilt_timer="src/solaris/timer.c"
|
|
evfilt_user="src/solaris/user.c"
|
|
evfilt_proc=""
|
|
evfilt_vnode=""
|
|
eventfd=""
|
|
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 $kevent $eventfd $evfilt_signal $evfilt_proc
|
|
$evfilt_socket $evfilt_timer $evfilt_user $evfilt_vnode"
|
|
}
|