about summary refs log tree commit homepage
path: root/ext
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2013-04-13 11:06:39 +0000
committerEric Wong <normalperson@yhbt.net>2013-04-13 11:06:39 +0000
commit856e3e6706a9ab40047eff22f0ddc9dd40ecdde2 (patch)
tree615454438e49f3330787faa22fd9c7331b5f1072 /ext
parent14141d20e359cc038424fc3d04151df6d5f9de2e (diff)
downloadsleepy_penguin-856e3e6706a9ab40047eff22f0ddc9dd40ecdde2.tar.gz
We no longer need to use pthread_* functionality.
Diffstat (limited to 'ext')
-rw-r--r--ext/sleepy_penguin/extconf.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/sleepy_penguin/extconf.rb b/ext/sleepy_penguin/extconf.rb
index 5e2c223..46aeb00 100644
--- a/ext/sleepy_penguin/extconf.rb
+++ b/ext/sleepy_penguin/extconf.rb
@@ -1,6 +1,5 @@
 require 'mkmf'
 have_header('sys/epoll.h') or abort 'sys/epoll.h not found'
-have_header("pthread.h") or abort 'pthread.h not found'
 have_header('sys/eventfd.h')
 
 # it's impossible to use signalfd reliably with Ruby since Ruby currently
@@ -16,5 +15,4 @@ have_func('rb_thread_blocking_region')
 have_func('rb_thread_io_blocking_region')
 have_func('rb_thread_fd_close')
 have_func('rb_update_max_fd')
-have_library('pthread')
 create_makefile('sleepy_penguin_ext')