Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 6f6ca9dc | 2014-12-07 18:33:22 | use the new $MV macro to generate assembly files Avoid spurious rebuilds running update.sh by generating a temp file and comparing the result to the existing one. | ||
| 5109e657 | 2014-12-07 18:16:16 | use 'make distcheck' for the release build script | ||
| afcd515b | 2014-12-08 02:13:34 | update.sh: remove linked manpages on uninstall Add additional code to remove linked manpages on uninstall. Since we do linking manually, automake will not remove them for us. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | ||
| 9d70cdc6 | 2014-12-08 02:08:18 | update.sh: add MV-like function preserving file timestamps Add a do_mv()/$MV wrappers to be called instead of just mv. This function will preserve the target file if it does not differ from the source file. This helps to remove unnecessary compilator calls after calling update.sh w/o source changes. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | ||
| a270e6a9 | 2014-12-08 02:21:22 | tests/Makefile.am.tpl: remove generated files on distclean Add pidwraptest.txt to DISTCLEANFILES to let it be removed on distclean. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | ||
| 7842cda3 | 2014-12-08 02:10:41 | update.sh: include gost test suite Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | ||
| 5390bbea | 2014-12-08 02:07:21 | update.sh: call $CP instead of cp to ease rebuilds In several additional places call $CP instead of just cp to ease and speed up rebuilds after update.sh execution. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | ||
| a40fccc7 | 2014-12-08 02:11:04 | Update .gitignore Add gost test suite and camellia cipher dir to .gitignore. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | ||
| 9c685415 | 2014-12-07 17:42:37 | disable inline assembly on Windows for now There are issues building with inline assembly on Windows 64-bit. | ||
| 03cd45e2 | 2014-12-06 18:43:58 | Enable optimized crypto operations for x86_64 This adds initial support for assembly crypto acceleration on x86_64 for ELF (Linux, *BSD, Solaris) and Mach-O (OS-X) systems. The build method is a little different than OpenSSL and OpenBSD. All the .s files are generated ahead of time when the tarball is generated, so there are no complicated makefile rules at configure/build time. This also means the builds are faster and perl is not required on the build system. Thanks to Wouter Clarie for providing the initial cleanup and patch that this is based on. |