aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Land #190, Enable cmake on SolarisBrent Cook2016-05-021-8/+23
|\ \
| * | organize enabling asm condition in cmakekinichiro2016-04-151-6/+10
| | | | | | | | | | | | | | | - add amd64 as same as x86_64 - add solaris(i386)
| * | fix cmake on Solariskinichiro2016-04-151-2/+13
| |/ | | | | | | | | | | - add Solaris specific compiler flags and library - merge message when SMALL_TIME_T is true - confirmed on SunOS Release 5.11 Version 11.3 64-bit Solaris i386
* | Land #189, Added extra cmake build options like autotools buildsBrent Cook2016-05-026-3/+59
|\ \
| * | add cmake build optionskinichiro2016-04-146-3/+59
| |/ | | | | | | | | | | | | | | | | | | | | | | | | - add cmake build options as configure provides * -DENABLE_ASM (default ON) * -DENABLE_EXTRATESTS (default OFF) * -DENABLE_NC (default OFF) * -DOPENSSLDIR (default ${CMAKE_INSTALL_PREFIX}/etc/ssl) - add biotest and pidwraptest if ENABLE_EXTRATESTS is ON - add compiler flag `-fno-common` if CMAKE_SYSTEM_NAME is Darwin to prevent link error Undefined symbols "_OPENSSL_ia32cap_P"
* / check linker flags before checking for functionsBrent Cook2016-04-241-2/+4
|/
* add cmake uninstall functionalitykinichiro2016-04-093-1/+30
| | | | | - add uninstall functionality * see https://cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
* Land #188, add ASM support for cmake buildsBrent Cook2016-04-092-9/+115
|\
| * modify cmake to build ASMkinichiro2016-04-082-9/+115
| | | | | | | | | | - add functionality compiling ASM with cmake - to enable ASM, `cmake -DENABLE_ASM=on ..`
* | modify cmake to build nckinichiro2016-04-098-81/+149
| | | | | | | | | | | | | | | | | | | | | | - modify structure of CMakeLists.txt under apps/ * move apps/CMakeLists.txt to apps/openssl/ since this is for openssl build * create new apps/nc/CMakeLists.txt for nc build * modify apps/CMakeLists.txt just add_subdirectory() - add checking and compile of arc4random_uniform() - add installing man files, openssl.1 and nc.1
* | Land #185, fix MINGW and CYGWIN builds with cmakeBrent Cook2016-04-091-1/+1
|\ \
| * | add condition for setting BUILD_SHARED (cmake)kinichiro2016-04-051-1/+1
| |/ | | | | | | - add MINGW and CYGWIN for win build
* | Land #184, execute tests that require srcdir environment variable with cmakeBrent Cook2016-04-095-29/+66
|\ \
| * | execute tests that require srcdir environment variable with cmakekinichiro2016-04-055-29/+66
| |/ | | | | | | | | | | - uncomment procedures for aeadtest, evptest, pq_test, ssltest, testdsa and testrsa - add set_tests_properties() for setting environment variable srcdir - tweak openssl path in ssltest.sh, testdsa.sh, testenc.sh and testrsa.sh
* | Land #183, fix cmake on HP-UXBrent Cook2016-04-094-6/+40
|\ \
| * | fix cmake on HP-UXkinichiro2016-04-044-6/+40
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - CMakeLists.txt * add OS specific compiler flags and library * add checking size of time_t * add checking memmem() - tests/CMakeLists.txt * add if(HAVE_MEMMEM) for explicit_bzero * add checking SMALL_TIME_T for rfc5280time - crypto/CMakeLists.txt * add getentropy_hpux.c - tls/CMakeLists.txt * fix checking strsep
* | set project LANGUAGES to Ckinichiro2016-03-301-1/+1
| |
* | set cmake_minimum_required to 2.8.8kinichiro2016-03-301-1/+1
|/ | | | `OBJECT` library type of add_library was introduced by CMake 2.8.8.
* update changelogBrent Cook2016-03-211-7/+4
|
* updated changelogBrent Cook2016-03-211-0/+18
|
* set windows binary OPENSSLDIR to something plausibleBrent Cook2016-03-211-1/+1
|
* modify include/compat/netinet/ip.hkinichiro2016-03-131-0/+4
| | | | - add including <netinet/in_systm.h> for n_long on HP-UX
* fix check for strlcatBrent Cook2016-03-121-1/+1
| | | | fixes #175
* add install_sw alias for latest nginxBrent Cook2016-03-121-0/+3
| | | | fixes #174
* update man linksBrent Cook2016-02-291-108/+24
|
* add things to minimize diffs with OpenNTPD-portableBrent Cook2016-02-152-19/+17
|
* updated changelogv2.3.2Brent Cook2016-01-271-2/+13
|
* add solaris include for getentropy(2)Brent Cook2016-01-181-0/+7
|
* package pidwraptest.sh scriptBrent Cook2016-01-031-1/+1
|
* whitelist NetBSD 7.0 native arc4random(3) implementation.Brent Cook2016-01-032-3/+17
| | | | | NetBSD 7 improves arc4random(3) over earlier versions by adding fork detection, stronger assertions on seed failure.
* enable nc on AIXBrent Cook2016-01-031-0/+1
|
* replace err.h macros with inline functionsBrent Cook2016-01-031-8/+54
| | | | Passing NULL for the format is just easier with a function.
* prefer gnu patch on AIXBrent Cook2016-01-031-1/+6
|
* include strings.h in string.h on AIX as wellBrent Cook2016-01-032-4/+6
|
* -path isn't really needed for perms fixup, and not supported everywhereBrent Cook2016-01-031-1/+1
|
* rebase netcat patchBrent Cook2015-12-281-13/+13
|
* add upstream config.guess/config.subBrent Cook2015-12-273-0/+3264
| | | | | This adds refreshed OS and CPU detection. https://www.gnu.org/software/gettext/manual/html_node/config_002eguess.html
* update check for b64_ntopBrent Cook2015-12-271-1/+1
| | | | typo spotted by Jonas 'Sortie' Termansen
* note the removed Verisign certificateBrent Cook2015-12-151-0/+4
|
* update added certsBrent Cook2015-12-141-1/+2
|
* Revert back to GetStdHandle, since it works fine with pipes.Brent Cook2015-12-111-6/+6
| | | | | Also include the formerly-missing NULL check, since this can fail in two ways.
* include stdint.h uint*_tBrent Cook2015-12-111-0/+1
|
* Replace STDIN_FILENO with _filenoAnthony Novatsis2015-12-111-3/+3
| | | | | Replace STDIN_FILENO with _fileno as STDIN_FILENO results in compile errors with Visual Studio 2015 (using CMake).
* installing nc(1) should imply building, even if not whitelistedBrent Cook2015-12-072-5/+5
|
* allow optionally installing nc(1) with '--enable-nc'Brent Cook2015-12-072-0/+8
|
* rebase windows headers patchBrent Cook2015-12-071-16/+16
|
* fixup cert.pem path override for libtls, add for nc(1)Brent Cook2015-12-073-21/+49
| | | | this also fixes the formatting of help for nc(1)
* refresh nc(1) supportBrent Cook2015-12-064-14/+17
|
* override _PATH_SSL_CA_FILE with OPENSSLDIR at build timeBrent Cook2015-12-062-0/+19
| | | | fix #160
* update changelogBrent Cook2015-12-061-0/+2
|