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.
1 parent 4ab1d9c commit 6bdd629Copy full SHA for 6bdd629
ext/proj4_c_impl/extconf.rb
@@ -12,11 +12,11 @@
12
13
require "mkmf"
14
15
- with_system_headers = with_config("system-headers", default = true)
16
- with_system_libs = with_config("system-libs", default = true)
+ with_default_header_paths = with_config("default-header-paths", default = true)
+ with_default_lib_paths = with_config("default-lib-paths", default = true)
17
18
header_dirs_ = [ ::RbConfig::CONFIG["includedir"] ]
19
- if with_system_headers
+ if with_default_header_paths
20
header_dirs_.push(
21
"/usr/local/include",
22
"/usr/local/proj/include",
@@ -31,7 +31,7 @@
31
end
32
33
lib_dirs_ = [ ::RbConfig::CONFIG["libdir"] ]
34
- if with_system_libs
+ if with_default_lib_paths
35
lib_dirs_.push(
36
"/usr/local/lib",
37
"/usr/local/lib64",
0 commit comments