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 6113bc5 commit 46843e8Copy full SHA for 46843e8
CHANGELOG.md
@@ -3,6 +3,7 @@
3
* Add Ruby 3.0, 3.1, and 3.2 to the cross compile list
4
* Fix segfault when asking if client was dead after closing it. Fixes #519.
5
* Mark `alloc` function as undefined on `TinyTds::Result`. Fixes #515.
6
+* Fix Gem installation on Windows by adding default freetds msys path. Fixes #522
7
8
## 2.1.5
9
ext/tiny_tds/extconf.rb
@@ -35,6 +35,10 @@ def do_help
35
/usr/local
36
)
37
38
+if ENV["RI_DEVKIT"] && ENV["MINGW_PREFIX"] # RubyInstaller Support
39
+ DIRS.unshift(File.join(ENV["RI_DEVKIT"], ENV["MINGW_PREFIX"]))
40
+end
41
+
42
# Add the ports directory if it exists for local developer builds
43
DIRS.unshift(freetds_ports_dir) if File.directory?(freetds_ports_dir)
44
0 commit comments