| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Remove the possibility of having any bad or old manpages in releases
while still being able to cache for quick development tarballs.
|
| |
|
|
|
|
| |
remove bash comparison, thanks kinichiro
|
|
|
|
|
| |
Surprisingly (or not), a lot of OpenSSL's inline assembly actually makes
things slower with a relatively modern compiler (read, gcc >= 4.x).
|
|
|
|
| |
use default of -std=gnu99 for it to be recognized
|
|
|
|
| |
this is the replacement for _BSD_SOURCE on newer glibc's
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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;"
|
|
|
|
| |
from wouter@
|
|
|
|
| |
this avoids inadvertent local merges
|
|
|
|
|
|
| |
it is only used by strndup
prodded by Sortie@
|
|
|
|
| |
Added OPENBSD_BRANCH to set what branch update.sh should checkout.
|
| |
|
|
|
|
| |
switch the sense of this check
|
| |
|
|
|
|
| |
ok bcook@
|
|
|
|
|
|
|
|
|
| |
* use the original name for the file from OpenSSH (remove duplicate version)
* add va_copy/__va_copy checks to configure
* incorporate proposed fixes to openssh version:
+ include more system headers directly for various definitions
+ limit the scope of va_copy/va_end to their affected vsnprintf calls
+ simplify error handling, removing a dead assignment
|
| |
|
|
|
|
|
|
| |
thanks to kinichiro for pointing this out
ok deraadt@ beck@
|
|
|
|
| |
ok deraadt@ beck@
|
|
|
|
| |
ok deraadt@ beck@
|
|
|
|
| |
ok deraadt@ beck@
|
|
|
|
| |
ok deraadt@ beck@
|
|
|
|
|
|
| |
Added AIX/IRIX compatibility for endian detection.
ok bcook@ deraadt@ beck@
|
|
|
|
|
|
|
|
| |
This is to avoid redefining prototypes from the libc headers. Also,
simplify the autoconf function checks and remove some copy/paste
errors checking for 'write'.
ok wouter@
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Note that gcc chose to disable this rather than cause link issues with
older copies of Solaris 10:
https://gcc.gnu.org/ml/gcc-patches/2012-01/msg00816.html
If we want to support Solaris <10.10 (I'd rather support up-to-date
versions), getentropy_solaris would need to change.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If an OS provides an arc4random_buf implementation in its C library,
prefer it over an in-library version. This allows OS-specific
implementations to become more robust over time. It also prevents
possible link-time confusion as to which arc4random_buf implementation
is in use by an application when linked with LibreSSL.
The built-in unit tests will identify some common issues, such as fork
safety and PID wrap handling. Other elements, such as seeding
mechanisms, should be audited by the vendor or user for correctness.
ok deraadt@ beck@
|
|
|
|
|
|
|
|
| |
The original author clarified the license, so we are fine to ship with
the PID wraparound test. Run it by default if libressl is using the
native arc4random supplied from the OS.
ok deraadt@
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
memmem is not always available, and not all memmem's work the same way
ok beck@ guenther@
|
|
|
|
|
|
| |
removes relative path hackery
ok beck@ guenther@
|
|
|
|
| |
ok beck@ guenther@
|
|
|
|
| |
ok beck@ guenther@
|
|
|
|
| |
ok beck@ guenther@
|
|
|
|
|
|
| |
Includes compatible replacements, or uses system err.h if available.
ok beck@ guenther@
|
|
|
|
| |
ok beck@ guenther@
|
|
|
|
|
|
| |
this saves time on rebuilds when testing tarballs
ok beck@ guenther@
|
|
|
|
| |
ok beck@
|
|
|
|
|
|
| |
Thanks to Jonas 'Sortie' Termansen for pointing the guard inconsistency out.
ok beck@
|
|
|
|
|
|
| |
thanks to Jonas 'Sortie' Termansen
ok beck@
|
|
|
|
| |
ok beck@
|
| |
|
|
|
|
|
|
| |
the thread-private bits can move next
ok beck@
|