Skip to content

Commit

Permalink
fix link order on Linux (#18)
Browse files Browse the repository at this point in the history
* fix link order on Linux

* update the changelog
  • Loading branch information
mmomtchev authored Sep 14, 2023
1 parent 3571145 commit e4aaabe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.9.1]

- Fix [#17](https://github.com/mmomtchev/node-magickwand/issues/17), crashes with `undefined symbol ...` on Linux when invoking methods in MagickWand such as `AnimateImages`

## [0.9.0] 2023-09-14

- TypeScript support
Expand Down
4 changes: 2 additions & 2 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,14 @@
'variables': {
'hdri': '--disable-hdri',
'magickdefines': [ 'MAGICKCORE_HDRI_ENABLE=0', 'MAGICKCORE_QUANTUM_DEPTH=16' ],
'magicklibs': [ '-lMagick++-7.Q16', '-lMagickCore-7.Q16', '-lMagickWand-7.Q16' ]
'magicklibs': [ '-lMagick++-7.Q16', '-lMagickWand-7.Q16', '-lMagickCore-7.Q16' ]
}
}],
['enable_hdri == "true"', {
'variables': {
'hdri': '--enable-hdri',
'magickdefines': [ 'MAGICKCORE_HDRI_ENABLE=1', 'MAGICKCORE_QUANTUM_DEPTH=16' ],
'magicklibs': [ '-lMagick++-7.Q16HDRI', '-lMagickCore-7.Q16HDRI', '-lMagickWand-7.Q16HDRI' ]
'magicklibs': [ '-lMagick++-7.Q16HDRI', '-lMagickWand-7.Q16HDRI', '-lMagickCore-7.Q16HDRI' ]
}
}]
],
Expand Down

0 comments on commit e4aaabe

Please sign in to comment.