summaryrefslogtreecommitdiff
path: root/tools/regression/lib/libmp
Commit message (Collapse)AuthorAgeFilesLines
* Integrate lib/libmp into the build/kyuaEnji Cooper2014-08-043-233/+0
| | | | | | | | | | | | | | | | - Remove the .t wrapper - Fix -Wreturn-type warnings with clang This change has been tested on amd64/i386 Phabric: D530 Reviewed by: jmmv Approved by: jmmv (co-mentor) MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=269534
* Rename all symbols in libmp(3) to mp_*, just like Solaris.Ed Schouten2009-02-261-59/+59
| | | | | | | | | | | | | | | The function pow() in libmp(3) clashes with pow(3) in libm. We could rename this single function, but we can just take the same approach as the Solaris folks did, which is to prefix all function names with mp_. libmp(3) isn't really popular nowadays. I suspect not a single application in ports depends on it. There's still a chance, so I've increased the SHLIB_MAJOR and __FreeBSD_version. Reviewed by: deischen, rdivacky Notes: svn path=/head/; revision=189092
* Add a test program which performs some very basic tests of libmp(3).Simon L. B. Nielsen2006-07-283-0/+233
It is by no means expected to perform a complete test of the library for correctness, but is meant to test the API to make sure libmp (or libcrypto) updates don't totally break the library. Notes: svn path=/head/; revision=160786