Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-11 | build: Remove unused constructs: `space' and `AC_PROG_MAKE_SET' | Michael Witten | |
The makefile variable `space' is never used. The autoconf output variable `SET_MAKE' is never used, so the autoconf macro `AC_PROG_MAKE_SET' has been removed. | |||
2018-02-09 | generate list of libtomcrypt directories automatically | Matt Johnston | |
2018-02-08 | Test for -Wno-pointer-sign, move CFLAGS tests into a macro | Matt Johnston | |
2018-01-25 | Merge pull request #48 from ↵ | Matt Johnston | |
DengkeDu/dengke/configure-add-variable-to-allow-openpty-check-cached configure: add a variable to allow openpty check to be cached | |||
2018-01-23 | fix updates to libtomcrypt/libtommath for out of tree builds | Matt Johnston | |
2017-07-11 | configure: add a variable to allow openpty check to be cached | Eric Bénard | |
Signed-off-by: Dengke Du <dengke.du@windriver.com> | |||
2017-06-27 | document --enable-static in place of STATIC=1 | Matt Johnston | |
2017-06-27 | add --enable-static configure argument. disable conflicting harden flags | Matt Johnston | |
2017-06-27 | improve configure --help alignment | Matt Johnston | |
2017-06-24 | test for -pie linker flag as well, for Linux | Matt Johnston | |
2017-06-24 | set hardened compiler/linker flags by default | Matt Johnston | |
2017-06-23 | test for linux/pkt-sched.h rather than SO_PRIORITY | Matt Johnston | |
2017-06-23 | Compile with -fno-strict-overflow if possible. | Matt Johnston | |
Needed for curve25519-donna https://github.com/agl/curve25519-donna/issues/31 | |||
2017-06-03 | Merge pull request #38 from armcc/master | Matt Johnston | |
Fix libtomcrypt/libtommath linking order | |||
2017-06-02 | Set configure #defines to 1. Escape some strings for m4 | Matt Johnston | |
2016-09-16 | Fix libtomcrypt/libtommath linking order | Andre McCurdy | |
To prevent build failures when using system libtom libraries and linking with --as-needed, LIBTOM_LIBS should be in the order -ltomcrypt -ltommath, not the other way around, ie libs should be prepended to LIBTOM_LIBS as they are found, not appended. Signed-off-by: Andre McCurdy <armccurdy@gmail.com> | |||
2016-07-27 | Fix configure options using AC_ARG_ENABLE | Stefan Hauser | |
Configure options to disable some features, which are checked using AC_ARG_ENABLE can be invoked with --enable-<option> as well. The current configure script always generates a #define for such options even though the --enable-<option> case should not generate a #define. Fix this by properly checking if the feature should be enabled, in which case no #define is being generated. Signed-off-by: Stefan Hauser <stefan@shauser.net> | |||
2016-03-16 | Use memset_s or explicit_bzero | Matt Johnston | |
2015-11-30 | The '==' comparision operator is not defined by POSIX, use '=' instead | Juergen Daubert | |
2015-11-26 | Another attempt at test for crypt() | Matt Johnston | |
2015-11-26 | Backed out changeset fbcd0a20e667 | Matt Johnston | |
2015-11-26 | AC_SEARCH_LIBS not AC_CHECK_LIB to find crypt() | Matt Johnston | |
2015-10-21 | Test for crypt() rather than crypt.h | Matt Johnston | |
Print a message from configure if getpass() or crypt() were missing | |||
2015-10-21 | fix default build when getpass() is unavailable | Mike Frysinger | |
if the system doesn't support getpass, we still default on the options that require it which causes a build failure. instead, only default enable these when getpass is available. | |||
2015-05-05 | Test struct existance against sizeof() operator | Gaël PORTAY | |
Instead of declaring an "unused-variable" or "unused-but-set-variable" structure. This avoid unexpected broken configurations when using something like: $ ./configure CFLAGS="-Wall -Wextra -Werror" It causes AC_COMPILE_IFELSE to fail and thus leading to a mismatch configuration (because the CFLAGS are passed to the macro). | |||
2015-01-28 | Allow configure with libtomcrypt/libtommath directories missing | Elan Ruusamäe | |
if using bundled libraries | |||
2014-03-13 | Add new monotonic_now() wrapper so that timeouts are unaffected by | Matt Johnston | |
system clock changes | |||
2014-02-18 | Fix building with system libtomcrypt/libtommath | Matt Johnston | |
2013-11-25 | Fix library order of libtom* | Matt Johnston | |
2013-11-25 | Try and fix utmp handling | Matt Johnston | |
2013-11-25 | Fix some warnings | Matt Johnston | |
2013-11-14 | Replace some deprecated macros with other ones, from Daniel Richard G. | Matt Johnston | |
2013-10-18 | Merge in changes from the past couple of releases | Matt Johnston | |
--HG-- branch : ecc | |||
2013-10-15 | Make --disable-bundled-libtom work, based on patch from Mike Frysinger | Matt Johnston | |
2013-05-21 | merge in HEAD | Matt Johnston | |
--HG-- branch : ecc | |||
2013-05-13 | Fix bad comma in header list | Matt Johnston | |
2013-03-31 | Try using writev() for writing packets out to tcp | Matt Johnston | |
2013-03-26 | refactor kexdh code a bit, start working on ecdh etc | Matt Johnston | |
--HG-- branch : ecc | |||
2013-03-24 | rename configure.in -> configure.ac | Mike Frysinger | |
Latest autotools warn now if the file is named configure.in --HG-- rename : configure.in => configure.ac |