Age | Commit message (Collapse) | Author |
|
enabled.
Signed-off-by: Alexander Dahl <ada@thorsis.com>
|
|
You should edit localoptions.h instead.
|
|
|
|
* Implemented dynamic loading of an external plug-in shared library to delegate public key authentication
* Moved conditional compilation of the plugin infrastructure into the configure.ac script to be able to add -ldl to dropbear build only when the flag is enabled
* Added tags file to the ignore list
* Updated API to have the constructor to return function pointers in the pliugin instance. Added support for passing user name to the checkpubkey function. Added options to the session returned by the plugin and have dropbear to parse and process them
* Added -rdynamic to the linker flags when EPKA is enabled
* Changed the API to pass a previously created session to the checkPubKey function (created during preauth)
* Added documentation to the API
* Added parameter addrstring to plugin creation function
* Modified the API to retrieve the auth options. Instead of having them as field of the EPKASession struct, they are stored internally (plugin-dependent) in the plugin/session and retrieved through a pointer to a function (in the session)
* Changed option string to be a simple char * instead of unsigned char *
|
|
|
|
- Rework monotonic_now/gettime_wrapper and use clock_gettime on more platforms
|
|
|
|
|
|
|
|
--HG--
branch : fuzz
|
|
- fix some unused variables
--HG--
branch : fuzz
|
|
--HG--
branch : fuzz
|
|
|
|
--HG--
branch : fuzz
|
|
--HG--
branch : fuzz
|
|
|
|
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.
|
|
|
|
|
|
DengkeDu/dengke/configure-add-variable-to-allow-openpty-check-cached
configure: add a variable to allow openpty check to be cached
|
|
--HG--
branch : fuzz
|
|
|
|
Signed-off-by: Dengke Du <dengke.du@windriver.com>
|
|
|
|
|
|
|
|
--HG--
branch : fuzz
|
|
|
|
--HG--
branch : fuzz
|
|
|
|
|
|
--HG--
branch : fuzz
|
|
Needed for curve25519-donna https://github.com/agl/curve25519-donna/issues/31
|
|
--HG--
branch : fuzz
|
|
Fix libtomcrypt/libtommath linking order
|
|
|
|
--HG--
branch : fuzz
|
|
--HG--
branch : fuzz
|
|
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>
|
|
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>
|
|
|
|
|
|
|
|
|
|
|
|
Print a message from configure if getpass() or crypt() were missing
|
|
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.
|
|
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).
|
|
if using bundled libraries
|
|
system clock changes
|