about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-01-13 21:31:21 +0000
committerEric Wong <e@80x24.org>2023-01-13 21:33:28 +0000
commit29b0ce236364bbc2ae5d758310fc5b3e9fd0a496 (patch)
tree9490524b9f15099056627ad2792f7acf42d7cc23
parente6bd740abee30c33e9b737ff37461b33aa1bf408 (diff)
downloadmwrap-29b0ce236364bbc2ae5d758310fc5b3e9fd0a496.tar.gz
libdl is no longer needed since we no longer use dlsym(3).
libc is assumed, not sure what I was smoking when I added
an explicit check for that...
-rw-r--r--ext/mwrap/extconf.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/mwrap/extconf.rb b/ext/mwrap/extconf.rb
index 3336548..f184b76 100644
--- a/ext/mwrap/extconf.rb
+++ b/ext/mwrap/extconf.rb
@@ -7,8 +7,6 @@ have_func 'mempcpy'
 have_library 'urcu-cds' or abort 'userspace RCU not installed'
 have_header 'urcu/rculfhash.h' or abort 'rculfhash.h not found'
 have_library 'urcu-bp' or abort 'liburcu-bp not found'
-have_library 'dl'
-have_library 'c'
 have_library 'execinfo' # FreeBSD
 $defs << '-DHAVE_XXHASH' if have_header('xxhash.h')