We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 22e601a + b551eb8 commit bd7b593Copy full SHA for bd7b593
ext/openssl/extconf.rb
@@ -18,6 +18,12 @@
18
19
Logging::message "=== OpenSSL for Ruby configurator ===\n"
20
21
+# Append flags from environment variables.
22
+extcflags = ENV["RUBY_OPENSSL_EXTCFLAGS"]
23
+append_cflags(extcflags.split) if extcflags
24
+extldflags = ENV["RUBY_OPENSSL_EXTLDFLAGS"]
25
+append_ldflags(extldflags.split) if extldflags
26
+
27
##
28
# Adds -DOSSL_DEBUG for compilation and some more targets when GCC is used
29
# To turn it on, use: --with-debug or --enable-debug
0 commit comments