Package Details: pqp 1.3-3

Git Clone URL: https://aur.archlinux.org/pqp.git (read-only, click to copy)
Package Base: pqp
Description: A library for performing proximity queries on a pair of geometric models composed of triangles
Upstream URL: http://gamma.cs.unc.edu/SSV/
Licenses: custom
Submitter: Sandmann
Maintainer: Sandmann
Last Packager: Sandmann
Votes: 4
Popularity: 0.000000
First Submitted: 2012-08-20 09:21 (UTC)
Last Updated: 2018-03-21 23:03 (UTC)

Latest Comments

Sandmann commented on 2018-03-21 23:04 (UTC)

Integrated fix into PKGBUILD as suggested by Broekman. Thanks!

Broekman commented on 2018-01-16 12:57 (UTC)

Please add:

sed -i '47,50d' src/PQP_Compile.h

On line 29 of the PKGBUILD to prevent the "previous declaration" compilation error as stated by the comment below me (Anonymous 2016-06-26 23:04).

<deleted-account> commented on 2016-06-26 23:04 (UTC)

I got name collisions on the build. This patch fixed it: --- PQP_Compile.h 2016-06-26 19:01:50.072487415 -0400 +++ PQP_Compile.h.new 2016-06-26 19:01:30.156102606 -0400 @@ -44,10 +44,12 @@ // prevents compiler warnings when PQP_REAL is float #include <math.h> +/* inline float sqrt(float x) { return (float)sqrt((double)x); } inline float cos(float x) { return (float)cos((double)x); } inline float sin(float x) { return (float)sin((double)x); } inline float fabs(float x) { return (float)fabs((double)x); } +*/ //------------------------------------------------------------------------- //

Sandmann commented on 2014-11-08 12:42 (UTC)

@austonst thanks you for the information. Included "options=(staticlibs)" as suggested.

austonst commented on 2014-10-27 22:23 (UTC)

This library produces libPQP.a when built. With a default /etc/makepkg.conf, the staticlibs variable is disabled, so libPQP.a is not added to the package and it is impossible to link programs. I solved this by adding "options=(staticlibs)" to the PKGBUILD, but I imagine anyone using the package would want the library.