tiny_tds 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +7 -0
- data/ext/tiny_tds/extconf.rb +3 -2
- data/ext/tiny_tds/tiny_tds_ext.h +2 -0
- data/lib/tiny_tds.rb +1 -1
- metadata +3 -3
data/CHANGELOG
CHANGED
@@ -1,4 +1,11 @@
|
|
1
1
|
|
2
|
+
* 0.4.2 *
|
3
|
+
|
4
|
+
* Iconv is a dep only when compiling locally. However, left in the ability to configure it for native gem installation but you must use --enable-iconv before using --with-iconv-dir=/some/dir
|
5
|
+
|
6
|
+
* Really fix what 0.4.1 was supposed to do, force SYBDBLIB compile.
|
7
|
+
|
8
|
+
|
2
9
|
* 0.4.1 *
|
3
10
|
|
4
11
|
* Undefine MSDBLIB in case others have explicitly compiled FreeTDS with "MS db-lib source compatibility: yes".
|
data/ext/tiny_tds/extconf.rb
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
require 'mkmf'
|
2
2
|
|
3
|
-
FREETDS_LIBRARIES = ['
|
3
|
+
FREETDS_LIBRARIES = ['sybdb']
|
4
|
+
FREETDS_LIBRARIES.unshift 'iconv' if enable_config('iconv')
|
4
5
|
FREETDS_HEADERS = ['sybfront.h', 'sybdb.h']
|
5
6
|
|
6
|
-
dir_config('iconv')
|
7
|
+
dir_config('iconv') if enable_config('iconv')
|
7
8
|
dir_config('freetds')
|
8
9
|
|
9
10
|
def root_paths
|
data/ext/tiny_tds/tiny_tds_ext.h
CHANGED
data/lib/tiny_tds.rb
CHANGED
metadata
CHANGED