aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Consolidate d2i_pr.c/i2d_pr.c into a_pkey.c andkinichiro2021-12-092-8/+4
| | | | consolidate d2i_pu.c/i2d_pu.c into a_pubkey.c
* Fix _PATH_SSL_CA_FILE for ocsp_testkinichiro2021-12-042-2/+2
|
* Sort regress key_schedulekinichiro2021-12-041-5/+5
|
* Add regress ssl_methodskinichiro2021-12-041-0/+5
|
* Land #700, Set IA-64 flags only on HP-UX IA-64Brent Cook2021-12-041-4/+9
|\
| * Set IA-64 compiler flag only if it is HP-UX with IA-64kinichiro2021-11-231-4/+9
| | | | | | | | | | | | | | | | Compiler switch -mlp64 (GCC) or +DD64(HP CC) gives build failure with platform HP-UX other than IA-64. This avoids build break on HP-UX with PA-RISC platform. Suggested from Larkin Nickle (me <at> larbob org) by libressl ML.
* | Remove unneeded target_include_directories with cmakekinichiro2021-12-047-54/+4
| | | | | | | | | | | | | | This could remove recurring of the same statement for include directories. Instead of this removals, apps/* and tests should have include path that had been provided by INTERFACE_INCLUDE_DIRECTORIES of target libs and internal static libs.
* | update man linksBrent Cook2021-11-301-0/+7
| |
* | add asn1x509 testBrent Cook2021-11-302-0/+10
| |
* | update man linksBrent Cook2021-11-301-5/+38
| |
* | adjust cmake check to include dependencies for netinet/ip.hBrent Cook2021-11-301-1/+1
| |
* | Revert "remove LIBRESSL_CRYPTO_INTERNAL"Brent Cook2021-11-291-1/+1
| | | | | | | | This reverts commit e8ea73c247069e4e5592b31c0888a8ceb35f7773.
* | Land #702: Add ct to libcryptoBrent Cook2021-11-293-1/+27
|\ \
| * | Add ctkinichiro2021-11-273-1/+27
| |/
* | remove LIBRESSL_CRYPTO_INTERNALkinichiro2021-11-271-1/+1
| |
* | Build static library for regression tests when shared build with CMakekinichiro2021-11-275-211/+218
|/
* Update CMake for new header checksBrent Cook2021-11-091-0/+10
|
* Autoconf updatesBrent Cook2021-11-093-9/+9
| | | | | Move machine/endian.h to endian.h, use AC_HEADER_RESOLV over individual header checks, and include prerequisites for netinet/ip.h check.
* Land #689, support OSes with some non-POSIX headersBrent Cook2021-11-095-6/+8
|\
| * Support operating systems without some non-POSIX headersJonas 'Sortie' Termansen2021-10-035-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The arpa/nameser.h, netinet/ip.h, and resolv.h headers are not crucial to building LibreSSL. The netinet/ip.h header is used in nc(1) for optional IPTOS_ features that can be ifdef'd on systems without support. The endian.h header is the upcoming standard header and should be used whenever available and correct. The machine/endian.h header is non-standard and doesn't have to exist on POSIX systems. Fix the check for getpagesize(3) not forward declaring the function, such that CFLAGS with -Werror=implicit-function-declaration doesn't cause the check to fail.
* | Land #694, Add the option for Apple-style xcframework librariesBrent Cook2021-11-091-0/+13
|\ \
| * | Add the option to support an Apple-style xcframework for tls, ssl, and cryptoCameron Lowell Palmer2021-10-151-0/+13
| | |
* | | Land #698, install pkgconfig files with ENABLE_LIBRESSL_INSTALLBrent Cook2021-11-091-18/+20
|\ \ \
| * | | Don't install pkgconfig if ENABLE_LIBRESSL_INSTALL is disabled.Tobias Heider2021-11-061-18/+20
| |/ /
* | | prepend tls dir to AM_CPPFLAGSBrent Cook2021-11-081-1/+1
| | |
* | | add o_fipsBrent Cook2021-11-082-0/+2
| | |
* | | add x509req_extBrent Cook2021-11-082-0/+10
| | |
* | | update man linksBrent Cook2021-11-081-7/+91
| | |
* | | build updatesBrent Cook2021-11-086-6/+12
|/ /
* / LibreSSL 3.4.1 ChangelogBrent Cook2021-10-131-0/+56
|/
* add minimal 3.4.0 changelogv3.4.0Brent Cook2021-09-141-0/+23
|
* update manpage linksBrent Cook2021-09-131-0/+5
|
* add new man linksBrent Cook2021-09-081-6/+71
|
* add new files to buildBrent Cook2021-09-083-0/+5
|
* Add -DHAVE_GNU_STACK on ELF platforms to enable non-executableTobias Heider2021-07-201-0/+1
| | | | stack annotations for the GNU toolchain.
* disable dtlstest when static libraries are not builtBrent Cook2021-07-191-1/+1
|
* update man linksBrent Cook2021-07-191-0/+30
|
* Update pc fileskinichiro2021-06-093-7/+0
| | | | | | - Remove Requires: and Conflicts: - libssl.pc does not need to have Libs.private: since Requires.private: provides required
* add OS to cross compile nameBrent Cook2021-05-301-1/+1
|
* disable continue-on-errorBrent Cook2021-05-302-3/+3
|
* add dtls_locl.hBrent Cook2021-05-301-0/+1
|
* update badges, further split out actions by OS, add more Linux targetsBrent Cook2021-05-307-45/+55
|
* Land #674, fix mingw builds with newer compiler versionsBrent Cook2021-05-302-1/+5
|\
| * Remove -D_FORTIFY_SOURCE=2 and -lssp with mingw buildkinichiro2021-05-302-2/+4
| |
| * Fix mingw build on ubuntu 20.04kinichiro2021-05-302-1/+3
| | | | | | | | | | - Link libssp to resolve undefined reference __memcpy_chk - Disable dtlstest since mingw does not have poll
* | Fix UWP buildkinichiro2021-05-292-15/+20
|/ | | | | - Do not set _WIN32_WINNT to enable VirtualAllocFromApp - Disable tlstest since SetHandleInformation is not supported on UWP
* Split out android testkinichiro2021-05-252-26/+30
|
* Set continue-on-error to falsekinichiro2021-05-241-1/+1
|
* Add pull_request triggerkinichiro2021-05-221-1/+1
|
* Force cmake to link strtonum shim with Darwin less than 20kinichiro2021-05-223-3/+6
| | | | check_function_exists misinterprets as if strtonum exists on macos 10.15.