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 23ed1e4 commit eb5f8edCopy full SHA for eb5f8ed
CHANGELOG.md
@@ -2,6 +2,7 @@
2
3
* Add Ruby 3.0 to the cross compile list
4
* Fix segfault when asking if client was dead after closing it. Fixes #519.
5
+* Fix Gem installation on Windows by adding default freetds msys path. Fixes #522
6
7
## 2.1.5
8
ext/tiny_tds/extconf.rb
@@ -33,6 +33,10 @@ def do_help
33
/usr/local
34
)
35
36
+if ENV["RI_DEVKIT"] && ENV["MINGW_PREFIX"] # RubyInstaller Support
37
+ DIRS.unshift(File.join(ENV["RI_DEVKIT"], ENV["MINGW_PREFIX"]))
38
+end
39
+
40
# Add the ports directory if it exists for local developer builds
41
DIRS.unshift(freetds_ports_dir) if File.directory?(freetds_ports_dir)
42
0 commit comments