genmodel 0.0.23 → 0.0.24
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.
- checksums.yaml +4 -4
- data/ext/Genmodel/GenModelBase.cpp +1 -1
- data/ext/Genmodel/extconf.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c41eeea8b7f2265cd0c278a3e8f2a8518d02668
|
4
|
+
data.tar.gz: 32eaa70d402fafccd1df954fdb27cca2877ac306
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7475fef619b7ab809715a21052e3428ac58d4917d950c1e8cc92226c4d6c860b5def07ec3c12ca30047b53d1bbc8baaabbe9171c4bb1c3f6e9df01b7708b9ad6
|
7
|
+
data.tar.gz: 82b145b848170c03d13ddcc957fe0f8b070eb01fe998bd51ae1c90984a3a735b53540b18f827a109e56d1ace293cfd52c3281b2d5ce2045ba09593526bef24f2
|
data/ext/Genmodel/extconf.rb
CHANGED
@@ -138,7 +138,7 @@ if is_darwin
|
|
138
138
|
|
139
139
|
path = "/usr/lib:/usr/local/lib/"
|
140
140
|
puts "Looking for CoinUtils (function main) in "+path
|
141
|
-
if(
|
141
|
+
if(is_osi && find_library("CoinUtils",nil,path))
|
142
142
|
puts "found"
|
143
143
|
else
|
144
144
|
puts "not found"
|
@@ -222,7 +222,7 @@ elsif is_linux
|
|
222
222
|
|
223
223
|
path = "/usr/lib:/usr/local/lib/"
|
224
224
|
puts "Looking for CoinUtils (function main) in "+path
|
225
|
-
if(
|
225
|
+
if(is_osi && find_library("CoinUtils",nil,path))
|
226
226
|
puts "found"
|
227
227
|
else
|
228
228
|
puts "not found"
|