Skip to content

Commit ee6e1cf

Browse files
committed
fix libname on macos
The OS name was not right for macOS. Released as 2.0.1. Thanks andrefelipe. See #140
1 parent d517e85 commit ee6e1cf

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `:vips` will be documented in this file.
44

5+
## 2.0.1 - 2022-1-20
6+
7+
- Fix library name on macOS [andrefelipe]
8+
59
## 2.0.0 - 2022-1-20
610

711
Rewritten to use PHP FFI to call into the libvips library rather than a binary

src/Config.php

+1
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ private static function libraryName($name, $abi)
286286
return "$name-$abi.dll";
287287

288288
case "OSX":
289+
case "Darwin":
289290
return "$name.$abi.dylib";
290291

291292
default:

0 commit comments

Comments
 (0)