1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: enable "--enable-dlopen"
Author: Jonas Genannt <jonas.genannt@capi2name.de>
Forwarded: not-needed
--- a/ext/extconf.rb
+++ b/ext/extconf.rb
@@ -28,7 +28,7 @@
puts "ERROR: sqlext.h not found"
exit 1
end
-testdlopen = enable_config("dlopen", false)
+testdlopen = true
begin
if PLATFORM !~ /(mingw|cygwin)/ then
header = "sqltypes.h"
--- a/ext/utf8/extconf.rb
+++ b/ext/utf8/extconf.rb
@@ -48,7 +48,7 @@
puts "ERROR: sqlext.h not found"
exit 1
end
-testdlopen = enable_config("dlopen", false)
+testdlopen = true
begin
if PLATFORM !~ /(mingw|cygwin)/ then
header = "sqltypes.h"
|