cryb-to/lib
Dag-Erling Smørgrav d4ae7a43cb Fix compiler warnings in Travis.
Travis forces _FORTIFY_SOURCE, which enables warn_unused_result annotations in glibc. Some of those annotations are of dubious value; in the case of asprintf(3) and vasprintf(3), they flag code that doesn't check the return value as unsafe even if it checks the pointer instead (which is guaranteed to be NULL in case of failure, and arguably more useful than the return value). Unfortunately, gcc intentionally ignores (void) casts, so we have no choice but to quench the warning with -Wno-unused-result. However, some of the compilers we wish to support don't recognize it, so we move it from the developer flags to the Travis environment.

While there, switch Travis from Precious to Trusty.
2017-05-01 16:52:22 +02:00
..
cipher Fix counter increment in Salsa and ChaCha. 2017-04-22 03:10:10 +02:00
core Use the English name of the University. 2017-04-29 02:31:15 +02:00
cpe Start using pkg-config / pkgconf. 2017-03-07 00:54:46 +01:00
digest Use the English name of the University. 2017-04-29 02:31:15 +02:00
enc Avoid any assumptions about the signedness of char. 2017-04-21 18:56:52 +02:00
hash Use the English name of the University. 2017-04-29 02:31:15 +02:00
mac Start using pkg-config / pkgconf. 2017-03-07 00:54:46 +01:00
mpi Fix equality predicates. 2017-04-22 05:32:25 +02:00
oath Start using pkg-config / pkgconf. 2017-03-07 00:54:46 +01:00
rand Start using pkg-config / pkgconf. 2017-03-07 00:54:46 +01:00
rsaref Centralize most of .gitignore. 2016-09-17 21:38:54 +02:00
test Fix compiler warnings in Travis. 2017-05-01 16:52:22 +02:00
Makefile.am Fix typo in libcryb-rand's Makefile and ensure that it is built before libcryb-oath, which uses it. 2016-11-21 13:46:49 +01:00