aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby
diff options
context:
space:
mode:
authorGravatar apolcyn <apolcyn@google.com>2018-07-25 22:27:20 -0700
committerGravatar GitHub <noreply@github.com>2018-07-25 22:27:20 -0700
commit1680f20c3590111614a0c446cb386f4193ffccbb (patch)
tree3a9ad038f373b0513001b0e3798c55a9ef1e0415 /src/ruby
parentae8d3efc3a360b289f0b33e1c53c8c73960cb31f (diff)
parent896ae70b9f7859618f4de86d8e83ffca0e95c1d8 (diff)
Merge pull request #16120 from tenderlove/rm-unused-code
Remove unused code
Diffstat (limited to 'src/ruby')
-rw-r--r--src/ruby/ext/grpc/extconf.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/ruby/ext/grpc/extconf.rb b/src/ruby/ext/grpc/extconf.rb
index df8acc1bc2..505357021e 100644
--- a/src/ruby/ext/grpc/extconf.rb
+++ b/src/ruby/ext/grpc/extconf.rb
@@ -15,31 +15,6 @@
require 'etc'
require 'mkmf'
-LIBDIR = RbConfig::CONFIG['libdir']
-INCLUDEDIR = RbConfig::CONFIG['includedir']
-
-HEADER_DIRS = [
- # Search /opt/local (Mac source install)
- '/opt/local/include',
-
- # Search /usr/local (Source install)
- '/usr/local/include',
-
- # Check the ruby install locations
- INCLUDEDIR
-]
-
-LIB_DIRS = [
- # Search /opt/local (Mac source install)
- '/opt/local/lib',
-
- # Search /usr/local (Source install)
- '/usr/local/lib',
-
- # Check the ruby install locations
- LIBDIR
-]
-
windows = RUBY_PLATFORM =~ /mingw|mswin/
bsd = RUBY_PLATFORM =~ /bsd/