mirror of
https://github.com/darlinghq/darling-libkqueue.git
synced 2024-11-23 03:39:51 +00:00
Integrate INSTALL with a new README file that includes very breif release
history. git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@648 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
This commit is contained in:
parent
843a5ca561
commit
667dfef7a7
19
INSTALL
19
INSTALL
@ -1,19 +0,0 @@
|
||||
INSTALLATION INSTRUCTIONS
|
||||
---
|
||||
|
||||
To building on Android, run something like this:
|
||||
|
||||
ruby ./configure.rb --host=arm-linux-androideabi \
|
||||
--with-ndk=/opt/android-ndk-r8c \
|
||||
--with-sdk=/opt/android-sdks
|
||||
make
|
||||
|
||||
For building on Linux or Solaris, run:
|
||||
|
||||
./configure
|
||||
make
|
||||
make install
|
||||
|
||||
TODO -- Need to document for Windows
|
||||
|
||||
|
64
README.md
Normal file
64
README.md
Normal file
@ -0,0 +1,64 @@
|
||||
libkqueue
|
||||
=========
|
||||
|
||||
A user space implementation of the kqueue(2) kernel event notification mechanism
|
||||
libkqueue acts as a translator between the kevent structure and the native
|
||||
kernel facilities on Linux, Android, Solaris, and Windows.
|
||||
|
||||
Supported Event Types
|
||||
---------------------
|
||||
|
||||
* vnode
|
||||
* socket
|
||||
* proc
|
||||
* user
|
||||
* timer
|
||||
|
||||
Installation - Linux, Solaris
|
||||
-----------------------------
|
||||
|
||||
./configure
|
||||
make
|
||||
make install
|
||||
|
||||
Installation - Red Hat
|
||||
----------------------
|
||||
|
||||
./configure
|
||||
make package
|
||||
rpm -i *.rpm
|
||||
|
||||
Installation - Android
|
||||
----------------------
|
||||
|
||||
ruby ./configure.rb --host=arm-linux-androideabi \
|
||||
--with-ndk=/opt/android-ndk-r8c \
|
||||
--with-sdk=/opt/android-sdks
|
||||
make
|
||||
|
||||
Running Unit Tests
|
||||
------------------
|
||||
|
||||
./configure
|
||||
make
|
||||
make check
|
||||
|
||||
Building Applications
|
||||
---------------------
|
||||
|
||||
CFLAGS += -I/usr/include/kqueue
|
||||
LDFLAGS += -lkqueue
|
||||
|
||||
Tutorials & Examples
|
||||
--------------------
|
||||
|
||||
[Kqueues for Fun and Profit](http://doc.geoffgarside.co.uk/kqueue)
|
||||
|
||||
[Handling TCP Connections with Kqueue Event Notification](http://eradman.com/posts//kqueue-tcp.html)
|
||||
|
||||
Releases History
|
||||
----------------
|
||||
|
||||
2.0 add support for Android _2013-04-29_
|
||||
|
||||
1.0 stable relesae for Linux, Solaris, and Windows _2010-09-18_
|
Loading…
Reference in New Issue
Block a user