Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit ad2db3b

Browse files
committed
project: Update for 0.9.0 merge.
1 parent 9d621e8 commit ad2db3b

4 files changed

Lines changed: 121 additions & 44 deletions

File tree

SMP/config.h

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
/* Define to 1 if you have the <glob.h> header file. */
1111
/* #undef HAVE_GLOB_H */
1212

13+
/* Define to 1 if you have the <valgrind/valgrind.h> header file. */
14+
/* #undef HAVE_VALGRIND_VALGRIND_H 1
15+
1316
/* Define to 1 if you have the <pty.h> header file. */
1417
/* #undef HAVE_PTY_H */
1518

@@ -87,6 +90,9 @@
8790
/* Define to 1 if you have the `EVP_aes128_cbc' function. */
8891
/* #undef HAVE_OPENSSL_EVP_AES_CBC */
8992

93+
/* Define to 1 if you have the `EVP_aes128_gcm' function. */
94+
/* #undef HAVE_OPENSSL_EVP_AES_GCM 1
95+
9096
/* Define to 1 if you have the `CRYPTO_THREADID_set_callback' function. */
9197
/* #undef HAVE_OPENSSL_CRYPTO_THREADID_SET_CALLBACK */
9298

@@ -96,6 +102,12 @@
96102
/* Define to 1 if you have the `EVP_CIPHER_CTX_new' function. */
97103
/* #undef HAVE_OPENSSL_EVP_CIPHER_CTX_NEW */
98104

105+
/* Define to 1 if you have the `EVP_KDF_CTX_new_id' function. */
106+
/* #undef HAVE_OPENSSL_EVP_KDF_CTX_NEW_ID 1
107+
108+
/* Define to 1 if you have the `OPENSSL_ia32cap_loc' function. */
109+
/* #undef HAVE_OPENSSL_IA32CAP_LOC 1
110+
99111
/* Define to 1 if you have the `snprintf' function. */
100112
/* #undef HAVE_SNPRINTF */
101113

@@ -169,6 +181,9 @@
169181
/* Define to 1 if you have the `SecureZeroMemory' function. */
170182
#define HAVE_SECURE_ZERO_MEMORY 1
171183

184+
/* Define to 1 if you have the `cmocka_set_test_filter' function. */
185+
/* #undef HAVE_CMOCKA_SET_TEST_FILTER */
186+
172187
/*************************** LIBRARIES ***************************/
173188

174189
/* Define to 1 if you have the `crypto' library (-lcrypto). */
@@ -183,12 +198,19 @@
183198
/* Define to 1 if you have the `pthread' library (-lpthread). */
184199
/* #undef HAVE_PTHREAD */
185200

201+
/* Define to 1 if you have the `cmocka' library (-lcmocka). */
202+
/* #undef HAVE_CMOCKA */
203+
186204
/**************************** OPTIONS ****************************/
187205

188206
/* #undef HAVE_GCC_THREAD_LOCAL_STORAGE */
189207
#define HAVE_MSC_THREAD_LOCAL_STORAGE 1
190208

191209
/* #undef HAVE_FALLTHROUGH_ATTRIBUTE */
210+
/* #undef HAVE_UNUSED_ATTRIBUTE */
211+
212+
/* #undef HAVE_CONSTRUCTOR_ATTRIBUTE */
213+
/* #undef HAVE_DESTRUCTOR_ATTRIBUTE */
192214

193215
/* #undef HAVE_GCC_VOLATILE_MEMORY_PROTECTION */
194216
#define HAVE_GCC_NARG_MACRO 1
@@ -210,6 +232,12 @@
210232
/* Define to 1 if you want to enable server support */
211233
#define WITH_SERVER 1
212234

235+
/* Define to 1 if you want to enable DH group exchange algorithms */
236+
#define WITH_GEX 1
237+
238+
/* Define to 1 if you want to enable blowfish cipher support */
239+
#define WITH_BLOWFISH_CIPHER 1
240+
213241
/* Define to 1 if you want to enable debug output for crypto functions */
214242
/* #undef DEBUG_CRYPTO */
215243

@@ -230,3 +258,7 @@
230258
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
231259
significant byte first (like Motorola and SPARC, unlike Intel). */
232260
/* #undef WORDS_BIGENDIAN */
261+
262+
#define GLOBAL_BIND_CONFIG ".ssh/libssh_server_config"
263+
264+
#define GLOBAL_CLIENT_CONFIG ".ssh/ssh_config"

0 commit comments

Comments
 (0)