Skip to content
Snippets Groups Projects
Commit 0f1c42e3 authored by murgatroid99's avatar murgatroid99
Browse files

Fixed Rubocop errors in extconf.rb

parent 9e56ce03
No related branches found
No related tags found
No related merge requests found
...@@ -54,6 +54,15 @@ LIB_DIRS = [ ...@@ -54,6 +54,15 @@ LIB_DIRS = [
LIBDIR LIBDIR
] ]
def check_grpc_root
grpc_root = ENV['GRPC_ROOT']
if grpc_root.nil?
r = File.expand_path(File.join(File.dirname(__FILE__), '../../../..'))
grpc_root = r if File.exist?(File.join(r, 'include/grpc/grpc.h'))
end
grpc_root
end
grpc_pkg_config = system('pkg-config --exists grpc') grpc_pkg_config = system('pkg-config --exists grpc')
if grpc_pkg_config if grpc_pkg_config
...@@ -61,18 +70,14 @@ if grpc_pkg_config ...@@ -61,18 +70,14 @@ if grpc_pkg_config
$LDFLAGS << ' ' + `pkg-config --static --libs grpc`.strip + ' ' $LDFLAGS << ' ' + `pkg-config --static --libs grpc`.strip + ' '
else else
dir_config('grpc', HEADER_DIRS, LIB_DIRS) dir_config('grpc', HEADER_DIRS, LIB_DIRS)
raise "libdl not found" unless have_library('dl', 'dlopen') fail 'libdl not found' unless have_library('dl', 'dlopen')
raise "zlib not found" unless have_library('z', 'inflate') fail 'zlib not found' unless have_library('z', 'inflate')
begin begin
raise "Fail" unless have_library('gpr', 'gpr_now') fail 'Fail' unless have_library('gpr', 'gpr_now')
raise "Fail" unless have_library('grpc', 'grpc_channel_destroy') fail 'Fail' unless have_library('grpc', 'grpc_channel_destroy')
rescue rescue
# Check to see if GRPC_ROOT is defined or available # Check to see if GRPC_ROOT is defined or available
grpc_root = ENV['GRPC_ROOT'] grpc_root = check_grpc_root
if grpc_root.nil?
r = File.expand_path(File.join(File.dirname(__FILE__), '../../../..'))
grpc_root = r if File.exist?(File.join(r, 'include/grpc/grpc.h'))
end
# Stop if there is still no grpc_root # Stop if there is still no grpc_root
exit 1 if grpc_root.nil? exit 1 if grpc_root.nil?
...@@ -89,8 +94,8 @@ else ...@@ -89,8 +94,8 @@ else
end end
$CFLAGS << ' -I' + File.join(grpc_root, 'include') $CFLAGS << ' -I' + File.join(grpc_root, 'include')
$LDFLAGS << ' -L' + grpc_lib_dir $LDFLAGS << ' -L' + grpc_lib_dir
raise "gpr not found" unless have_library('gpr', 'gpr_now') raise 'gpr not found' unless have_library('gpr', 'gpr_now')
raise "grpc not found" unless have_library('grpc', 'grpc_channel_destroy') raise 'grpc not found' unless have_library('grpc', 'grpc_channel_destroy')
end end
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment