Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove hard-coded optimization level in CMake builds | Brent Cook | 2023-07-07 | 1 | -1/+1 | |
| | | | | | Fixes #683. These are not compiler-agnostic, and can interfere with user overrides as well. The defaults in Cmake are reasonable. | |||||
* | Land #886, add compat getopt implementation | Brent Cook | 2023-07-07 | 1 | -0/+5 | |
|\ | ||||||
| * | add compat getopt implementation, remove patches | Brent Cook | 2023-07-07 | 1 | -0/+5 | |
| | | | | | | | | | | | | | | | | | | This adds a getopt implementation for compatibility where it is not available, removing a couple of regress patches. Note, this is a slightly modified copy from OpenBSD libc that doesn't expose getopt_long, which has dependency conflicts with Windows system headers and isn't needed anyway. | |||||
* | | change socket / file descriptor checks on windows | Brent Cook | 2023-07-06 | 1 | -1/+1 | |
|/ | | | | | | | | | | | based on discussion in https://github.com/libressl/portable/issues/266 and https://bugs.python.org/issue23524 adjust the compat layer for Windows to use _get_osfhandle in combination with _set_thread_local_invalid_parameter_handler if applicable to more reliably determine if a handle is a socket, file, or closed socket. This prevents assertions when calling tls_close on an already-closed socket. | |||||
* | make cross compilation possible on macOS with CMake | Brent Cook | 2023-07-04 | 1 | -0/+9 | |
| | | | | | | Sync CMAKE_SYSTEM_PROCESSOR to CMAKE_OSX_ARCHITECTURES. This doesn't support universal binaries, but does allow cross-compiling for a single architecture by setting -DCMAKE_OSX_ARCHITECTURES=(arm64|x86_64) | |||||
* | fix asm on x86_64 macos | Brent Cook | 2023-05-26 | 1 | -1/+1 | |
| | ||||||
* | Disable assembly on macos for now | Theo Buehler | 2023-04-25 | 1 | -1/+1 | |
| | ||||||
* | handle i?86 for 32-bit CMake builds | Brent Cook | 2023-02-27 | 1 | -1/+2 | |
| | ||||||
* | set CMAKE_SYSTEM_PROCESSOR when cross compiling | Brent Cook | 2023-02-27 | 1 | -4/+4 | |
| | | | | handle x86 as option for 32-bit x86 on Windows | |||||
* | reenable aarch64 asm for macos | Brent Cook | 2023-02-25 | 1 | -2/+0 | |
| | ||||||
* | only disable asm on aarch64 for now, enable for other archs | Brent Cook | 2023-02-23 | 1 | -3/+1 | |
| | ||||||
* | generally disable asm for now | Brent Cook | 2023-02-21 | 1 | -1/+4 | |
| | ||||||
* | disable BN ASM for aarch64 for now (fails tests) | Brent Cook | 2023-02-21 | 1 | -0/+1 | |
| | ||||||
* | generate and include arch-specific headers for CMake builds | Brent Cook | 2023-02-21 | 1 | -1/+27 | |
| | ||||||
* | Detect machine/endian.h for macOS | Jiajie Chen | 2022-07-12 | 1 | -0/+5 | |
| | ||||||
* | Add libmd as platform specific libraries for Solaris | kinichiro | 2022-01-17 | 1 | -1/+1 | |
| | ||||||
* | adjust cmake check to include dependencies for netinet/ip.h | Brent Cook | 2021-11-30 | 1 | -1/+1 | |
| | ||||||
* | Build static library for regression tests when shared build with CMake | kinichiro | 2021-11-27 | 1 | -0/+9 | |
| | ||||||
* | Update CMake for new header checks | Brent Cook | 2021-11-09 | 1 | -0/+10 | |
| | ||||||
* | Land #694, Add the option for Apple-style xcframework libraries | Brent Cook | 2021-11-09 | 1 | -0/+13 | |
|\ | ||||||
| * | Add the option to support an Apple-style xcframework for tls, ssl, and crypto | Cameron Lowell Palmer | 2021-10-15 | 1 | -0/+13 | |
| | | ||||||
* | | Don't install pkgconfig if ENABLE_LIBRESSL_INSTALL is disabled. | Tobias Heider | 2021-11-06 | 1 | -18/+20 | |
|/ | ||||||
* | Add -DHAVE_GNU_STACK on ELF platforms to enable non-executable | Tobias Heider | 2021-07-20 | 1 | -0/+1 | |
| | | | | stack annotations for the GNU toolchain. | |||||
* | Fix UWP build | kinichiro | 2021-05-29 | 1 | -1/+4 | |
| | | | | | - Do not set _WIN32_WINNT to enable VirtualAllocFromApp - Disable tlstest since SetHandleInformation is not supported on UWP | |||||
* | cmake: tweak for clang-cl | Paweł Wegner | 2021-05-18 | 1 | -2/+1 | |
| | | | | This change allows libressl to be built with clang-cl. | |||||
* | Statically link libcrypto/ssl into libtls with cmake | kinichiro | 2021-05-07 | 1 | -1/+2 | |
| | ||||||
* | Add '--enable-libtls-only' build option | Brent Cook | 2021-04-07 | 1 | -0/+11 | |
| | ||||||
* | Add -lbcrypt to Windows builds for CNG in getentropy | Brent Cook | 2020-11-11 | 1 | -1/+1 | |
| | ||||||
* | [CMakeLists.txt] Move `project` below `cmake_minimum_required`; fix ↵ | Samuel Marks | 2020-05-23 | 1 | -5/+6 | |
| | | | | indentation in its `if`/`else` block; [tap-driver.sh] Copyright line update (was automatic with `./autogen.sh`) | |||||
* | Fix cmake build to enable masm with VS2019 | kinichiro | 2020-05-09 | 1 | -1/+1 | |
| | | | | | | | To specify architecture Visual Studio 16 2019 requires -A option, and it is stored in variable CMAKE_GENERATOR_PLATFORM. Until Visual Studio 15 2017, architecture was indicated as part of generator string (e.g. "Visual Studio 15 2017 Win64") | |||||
* | more MSVC build/test tweaks | Brent Cook | 2020-05-01 | 1 | -1/+1 | |
| | ||||||
* | make cmake version bump conditional on MSVC | Brent Cook | 2020-05-01 | 1 | -1/+5 | |
| | ||||||
* | bump cmake and appveyor build environment | Brent Cook | 2020-05-01 | 1 | -1/+1 | |
| | ||||||
* | Force use of 3.15.7 | OJ | 2020-04-20 | 1 | -1/+1 | |
| | ||||||
* | Add support for use of static MSVC runtimes | OJ | 2020-04-15 | 1 | -1/+7 | |
| | | | | | | In certain contexts LibreSSL needs to be built with `/MT` instead of `/MD` for inclusion in other projects. These changes allow for the command-line option `USE_STATIC_MSVC_RUNTIMES` to be set to `ON` if the use wishes to generate projects that will build with static runtimes. This feature requires CMAKE version 3.15+, hence the minimum required version has changed as well. | |||||
* | Check for existing uninstall target before creating. | Matthew Albrecht | 2019-09-20 | 1 | -6/+8 | |
| | ||||||
* | Enable speed on win32 | kinichiro | 2019-07-14 | 1 | -1/+1 | |
| | | | | | - Use thread and sleep instead of signal and alarm, on win32 - Disable -multi option on win32 since fork is hard to implement | |||||
* | Fix illegal pkg-config file generated | kinichiro | 2019-07-09 | 1 | -1/+3 | |
| | ||||||
* | remove comments and unify fixups | Brent Cook | 2019-06-10 | 1 | -3/+0 | |
| | ||||||
* | Fix masm build | kinichiro | 2019-06-10 | 1 | -1/+1 | |
| | | | | | | - Fix masm operators and comments - Add -DOPENSSL_NO_ASM only if not 64 bit build - Add -DCMAKE_INSTALL_PREFIX to avoid build error | |||||
* | Enable masm compilation under windows | Stephan Vedder | 2019-06-10 | 1 | -1/+1 | |
| | ||||||
* | add __dead__ annotation support | Brent Cook | 2019-02-09 | 1 | -0/+1 | |
| | ||||||
* | update cmake | Brent Cook | 2019-01-31 | 1 | -0/+15 | |
| | ||||||
* | more masm fixes, but disable for now | Brent Cook | 2019-01-21 | 1 | -2/+5 | |
| | ||||||
* | a couple of fixes to get MSVC Win64 going again | Brent Cook | 2019-01-21 | 1 | -1/+1 | |
| | ||||||
* | use generator to determine if we're building 64-bit code on Windows | Brent Cook | 2019-01-21 | 1 | -1/+1 | |
| | ||||||
* | fixes to build asm on MSVS | Brent Cook | 2019-01-21 | 1 | -1/+2 | |
| | ||||||
* | consider masm/mingw assembly flavors from cmake | Brent Cook | 2019-01-20 | 1 | -0/+4 | |
| | ||||||
* | add configure-time check for timespecsub | Brent Cook | 2019-01-06 | 1 | -0/+5 | |
| | ||||||
* | add some defines for building Mingw cross-compiled with CMake | Brent Cook | 2019-01-02 | 1 | -5/+5 | |
| |