Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 5c23f251 | 2014-09-26 16:12:53 | clear local manpage cache before generating a release tarball Remove the possibility of having any bad or old manpages in releases while still being able to cache for quick development tarballs. | ||
| 3f944e83 | 2014-08-27 21:46:43 | update for upstream move of the openssl app | ||
| e7edc4a7 | 2014-08-18 21:55:37 | ensure compatibility with posix shell remove bash comparison, thanks kinichiro | ||
| 01726893 | 2014-08-17 07:58:32 | add --disable-asm flag for disabling inline asm Surprisingly (or not), a lot of OpenSSL's inline assembly actually makes things slower with a relatively modern compiler (read, gcc >= 4.x). | ||
| 2cef68f3 | 2014-08-16 14:16:01 | allow inline asm use default of -std=gnu99 for it to be recognized | ||
| 2d719eb3 | 2014-08-16 08:17:32 | set _DEFAULT_SOURCE on linux hosts this is the replacement for _BSD_SOURCE on newer glibc's | ||
| 6dccbae6 | 2014-08-12 17:21:48 | update stdio.h for including stdarg.h it seems that including stdarg.h is needed for defining va_list environment is hpux 11.31(ia64) with gcc 4.7.1. without stdarg.h, I got compilation error like this. "error: 'va_list' undeclared (first use in this function)" I checked with gcc -E, then I noticed that __va_list is defined but va_list is not. "typedef __gnuc_va_list __va_list;" with including stdarg.h, va_list is defined. "typedef __gnuc_va_list va_list;" | ||
| 46b6df7c | 2014-08-12 06:20:58 | remove configure.am.tpl, pull in VERSION directly from wouter@ | ||
| d6a485d1 | 2014-08-08 07:31:28 | rebase on pull when updating the openbsd branch this avoids inadvertent local merges | ||
| 00b51d5c | 2014-08-02 21:43:56 | conditionally build strnlen if needed. it is only used by strndup prodded by Sortie@ |