sciapp / gr

GR framework: a graphics library for visualisation applications
Other
328 stars 54 forks source link

Add support for Qhull 2020.2 #129

Closed kou closed 3 years ago

kou commented 3 years ago

libqhull.so is deprecated and not installed since Qhull 2020.2. We should use libqhullstatic.a because we use qhull_a.h (non-reentrant version). We should use libqhull_r.so once we change to use qhull_ra.h (reentrant version) from qhull_a.h.

From http://www.qhull.org/news/qhull-news.html :

They do not produce deprecated libraries: libqhull.so, qhull.dll, libqhull_p.so, and qhull_p.dll. Users of these libraries should convert their code to reentrant Qhull (libqhull_r.so) or link to libqhullstatic.a.

FlorianRhiem commented 3 years ago

Thank you for the pull request! I've merged it into develop.