aboutsummaryrefslogtreecommitdiff
path: root/configure.ac (follow)
Commit message (Collapse)AuthorAgeFilesLines
* enable ASM on aarch64, disable on i386Brent Cook2023-02-251-1/+1
|
* only disable asm on aarch64 for now, enable for other archsBrent Cook2023-02-231-5/+2
|
* disable asm for autoconf tests as wellBrent Cook2023-02-211-0/+1
|
* generally disable asm for nowBrent Cook2023-02-211-2/+4
|
* add CPU checks, include initial bn_arch.h headersBrent Cook2023-02-141-1/+16
|
* disable asm by defaultBrent Cook2023-02-131-2/+3
|
* update autotool macro deprecationsBrent Cook2022-02-271-2/+1
| | | | fix latest round of autotool complaints
* Add '--enable-libtls-only' build optionBrent Cook2021-04-071-15/+8
|
* Configure libtls and nc(1) to statically link to libcrypto/sslBrent Cook2020-10-041-2/+1
| | | | | | | | | | | | | | | An issue that Reyk Floeter noted while building a Debian package for LibreSSL is that installing libtls along with OpenSSL causes linker issues since it will often pick up the wrong libcrypto/libssl. This change makes libtls statically link the object files it needs rather than relying on the shared libraries, effectively making libtls self-contained and able to be packaged independently. This should make it possible for other projects that also use libtls to be able to package support without requiring the target OS to ship libcrypto / libssl from LibreSSL. https://salsa.debian.org/reyk-guest/libressl/-/commit/678278df55ce866f2f363998ca690442fa786c66
* Add architecture define for s390/s390x and remove redundant sparc checkkinichiro2020-07-221-1/+0
|
* Get __STRICT_ALIGNMENT from machine/endian.hkinichiro2020-07-211-13/+0
|
* improved default help valueVincent Torri2020-05-021-1/+1
|
* missing change of variableVincent Torri2020-05-021-2/+2
|
* enable tests by defaultVincent Torri2020-05-011-6/+5
|
* enable tests by defaultVincent Torri2020-05-011-2/+8
|
* Add configure option to disable testsVincent Torri2020-05-011-0/+4
|
* enable asm for mingw64Brent Cook2019-01-201-0/+4
|
* check for cc before gccBrent Cook2019-01-201-1/+1
|
* add arm asm support via autoconf/makeBrent Cook2018-11-111-2/+4
|
* __warn_references: tweak assembly for "gnu.warning" sectionSergei Trofimovich2018-05-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | On some targets ';' (like hppa) is treated as a comment in assembly files. This occasionally causes the following assembly failures: ``` Error: can't resolve `.gnu.warning.EVP_DecryptFinal' {.gnu.warning.EVP_DecryptFinal section} - `.Ltext0' {.text section} ``` Note how branch (or other reference) attempts to cross the boundary across two section types: '.text' and '.gnu.warning'. Tobias Ulmer notes that openbsd already uses newlines for similar macro: https://github.com/openbsd/src/blob/master/sys/arch/hppa/include/cdefs.h This change switches from ';' to newline as well. Tested on hppa2.0 and x86_64. Reported-by: Jeroen Roovers Bug: https://bugs.gentoo.org/656104 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* fix extra comma in amd64 normalizationBrent Cook2018-05-021-1/+1
|
* set SMALL_TIME_T when sizeof time_t == 4Brent Cook2017-08-141-0/+1
|
* generate the crypto export symbol list at build timeBrent Cook2017-07-081-15/+9
| | | | | | we currently do it at configure time, which makes this a generated source, but generated sources should be cleaned up, which breaks 'make clean; make'
* Remove "exit 1" (added by mistake)Paul Graham2017-02-181-2/+0
|
* Document 32-bit time_t problem on minw-w64 toolchain and how to avoid itPaul Graham2017-02-151-0/+8
|
* initial ocspcheck integrationBrent Cook2017-01-241-0/+1
|
* Fix to use -export-symbols for libcryptokinichiro2017-01-151-0/+2
| | | | - generating platform specific crypto/crypto_portable.sym from crypto.sym
* installing nc(1) should imply building, even if not whitelistedBrent Cook2015-12-071-4/+0
|
* allow optionally installing nc(1) with '--enable-nc'Brent Cook2015-12-071-0/+4
|
* make it clear that we skipped 64-bit time_t testsBrent Cook2015-10-181-0/+2
|
* include warnings about small time_tBrent Cook2015-10-171-3/+9
|
* disable some tests with 32-bit time_t systemsBrent Cook2015-10-171-0/+3
| | | | Also disable use of _mkgmtime, it does not produce correct results.
* add tame(2) checkBrent Cook2015-10-071-1/+2
|
* add b64_ntop checking and fallback for nc(1)Brent Cook2015-10-011-0/+1
|
* normalize amd64 to x86_64Brent Cook2015-09-161-0/+4
| | | | | This allows asm to be enabled on platforms that use amd64 in the host tuple.
* allow nc to build on linux and os xBrent Cook2015-09-131-2/+0
|
* add 'nc' to the distribution as an example of libtls client and serverBrent Cook2015-09-121-0/+2
|
* implement compatibility shim for __warn_referencesBrent Cook2015-07-171-0/+12
| | | | This will allow us to warn about deprecated function references at link-time.
* fixup how OPENSSLDIR is derived and expandedBrent Cook2015-07-151-4/+3
| | | | | | | | As per http://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Installation-Directory-Variables.html we should not try to expand variables like sysconfdir in the configure script, but rather derive the correct value in the Makefiles instead. This fixes missing expansions as the preprocessor define.
* Improve automatic handling of OPENSSLDIRBrent Cook2015-07-121-1/+4
| | | | | Install a default cert.pem, openssl.cnf, x509v3.cnf in OPENSSLDIR, which is derived by default from sysconfdir and the prefix setting.
* remove unused --with-enginesdir configuration parameterBrent Cook2015-07-081-6/+0
|
* set 'foreign' flag in automakeBrent Cook2015-06-131-1/+1
| | | | | Avoid warnings about following GNU standards, since this is not a GNU project. Thanks to Doug Hogan for pointing this out.
* refactor configure into separate m4 macrosBrent Cook2015-05-231-263/+32
| | | | this allows for some reusability with libtls
* adding support for bitrigDave Huseby2015-05-141-1/+1
|
* use the same gcc test for AIX as HP-UXBrent Cook2015-04-271-1/+1
|
* modify for HP-UX build, choose correct CFLAGS for gcc.kinichiro2015-04-271-1/+1
|
* remove unneeded check for sys/sysctl.hBrent Cook2015-04-191-1/+1
|
* use alternate cflags on AIX and HP-UX vendor compilersBrent Cook2015-04-191-1/+11
|
* Revert configure-time checks for -Wall/-std=gnu99Brent Cook2015-04-141-36/+14
| | | | | There is a problem with these on some compilers, revert while a solution is found.
* make compiler checks for -Wall and -std=gnu99Brent Cook2015-04-141-14/+36
| | | | Yes, there are compilers that do not understand or need these.