Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | ||||
* | include -ldl for SHA512 operations | Brent Cook | 2019-04-23 | 1 | -1/+1 |
| | |||||
* | add __dead__ annotation support | Brent Cook | 2019-02-09 | 1 | -0/+1 |
| | |||||
* | enable asm for mingw64 | Brent Cook | 2019-01-20 | 1 | -0/+1 |
| | |||||
* | check if we need to link pthread dynamically | Brent Cook | 2019-01-07 | 1 | -3/+1 |
| | | | | | On Linux, bionic and musl for instance do not need libpthread. With bionic, there is not even a stub library for compatibility. | ||||
* | bump base requirement to Windows Vista, use builtin inet_ntop/pton | Brent Cook | 2018-03-14 | 1 | -1/+1 |
| | |||||
* | Add libpthread for libtls build | kinichiro | 2018-03-13 | 1 | -0/+1 |
| | |||||
* | Remove 64bit build designation on Solaris | kinichiro | 2018-01-11 | 1 | -1/+0 |
| | | | | | | - Revert commit https://github.com/libressl-portable/portable/pull/327/commits/c18852f650a3cb258e10222695a31ed5c929ab23 - Remove -m64 from CMakeLists.txt by commit https://github.com/libressl-portable/portable/commit/08089a1b20a1818538670d641242266ed3185814 - Suggested by @andy-js in conversation https://github.com/libressl-portable/portable/pull/327 | ||||
* | add prototype definitions of asprintf and vasprintf for CYGWIN build | kinichiro | 2017-07-16 | 1 | -0/+1 |
| | | | | | | - define _GNU_SOURCE in case of cygwin As compilation warning report by @Dravion | ||||
* | Set Solaris build default to 64 bit | kinichiro | 2017-07-08 | 1 | -0/+1 |
| | |||||
* | Remove misleading CFLAGS / LDFLAGS. | Paul Graham | 2017-06-09 | 1 | -2/+0 |
| | | | | | | | | These variables were being ignored because libtool doesn't pass -static-libgcc to GCC. If you want to link libgcc statically, currently the only way to achieve this is to manually add -static-libgcc to CC variable. See: http://www.mingw.org/wiki/HOWTO_Sneak_GCC_Switches_Past_Libtool | ||||
* | Sync getentropy() checks with use-builtin-arc4random checks | Simone Basso | 2016-12-10 | 1 | -1/+26 |
| | | | | | Without this, we actually fail to build a library that includes the bultin getentropy when compiling for 10.11 on 10.12. | ||||
* | prefer builtin arc4random on OS X 10.12+ (using getentropy as the signal) | Brent Cook | 2016-11-06 | 1 | -1/+9 |
| | |||||
* | Disable netcat if arpa/telnet.h is not available (iOS) | jacob berkman | 2016-08-09 | 1 | -0/+2 |
| | |||||
* | add things to minimize diffs with OpenNTPD-portable | Brent Cook | 2016-02-15 | 1 | -18/+13 |
| | |||||
* | whitelist NetBSD 7.0 native arc4random(3) implementation. | Brent Cook | 2016-01-03 | 1 | -0/+16 |
| | | | | | NetBSD 7 improves arc4random(3) over earlier versions by adding fork detection, stronger assertions on seed failure. | ||||
* | enable nc on AIX | Brent Cook | 2016-01-03 | 1 | -0/+1 |
| | |||||
* | installing nc(1) should imply building, even if not whitelisted | Brent Cook | 2015-12-07 | 1 | -1/+5 |
| | |||||
* | build nc on solaris and cygwin | Brent Cook | 2015-11-23 | 1 | -0/+2 |
| | |||||
* | whitelist nc on other BSDs | Brent Cook | 2015-10-23 | 1 | -0/+2 |
| | |||||
* | add b64_ntop checking and fallback for nc(1) | Brent Cook | 2015-10-01 | 1 | -2/+0 |
| | |||||
* | remove incorrect comment | Brent Cook | 2015-09-30 | 1 | -1/+0 |
| | | | | | We actually want to only start extending CFLAGS after calling AC_PROG_CC so we get the default autoconf value (usually just -O2). | ||||
* | allow nc to build on linux and os x | Brent Cook | 2015-09-13 | 1 | -0/+6 |
| | |||||
* | restrict nc to openbsd builds for now | Brent Cook | 2015-09-12 | 1 | -0/+2 |
| | |||||
* | disable strict aliasing on HP-UX C/aC++ compilerv2.2.2 | kinichiro | 2015-08-04 | 1 | -1/+1 |
| | | | | | to disable strict aliasing on HP-UX C/aC++, `+Otype_safety=off` is right. `+Otype_safety=strong` forces ANSI aliasing. | ||||
* | add initial CMake and Visual Studio build support | Brent Cook | 2015-07-21 | 1 | -1/+1 |
| | | | | | | | | This moves the compatibility include files from include to include/compat so we can use the awful MS C compiler <../include/> trick to emulate the GNU #include_next extension. This also removes a few old compat files we do not need anymore. | ||||
* | disable strict aliasing on AIX xlc and HP-UX aC++ compilers | Brent Cook | 2015-07-16 | 1 | -3/+3 |
| | |||||
* | add check for inet_pton, nudge minimum win32 compat to 0x0501 | Brent Cook | 2015-07-02 | 1 | -1/+1 |
| | |||||
* | refactor configure into separate m4 macros | Brent Cook | 2015-05-23 | 1 | -0/+77 |
this allows for some reusability with libtls |