File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ fn main() {
30
30
31
31
let target = std:: env:: var ( "TARGET" ) . unwrap ( ) ;
32
32
cfg. define ( "GLOBAL_CLIENT_CONFIG" , Some ( "\" /etc/ssh/ssh_config\" " ) ) ;
33
+ cfg. define (
34
+ "GLOBAL_BIND_CONFIG" ,
35
+ Some ( "\" /etc/ssh/libssh_server_config\" " ) ,
36
+ ) ;
33
37
cfg. define ( "HAVE_GETADDRINFO" , Some ( "1" ) ) ;
34
38
cfg. define ( "HAVE_LIBCRYPTO" , Some ( "1" ) ) ;
35
39
cfg. define ( "HAVE_OPENSSL_AES_H" , Some ( "1" ) ) ;
@@ -65,6 +69,7 @@ fn main() {
65
69
cfg. define ( "WITH_ZLIB" , Some ( "1" ) ) ;
66
70
cfg. define ( "WITH_GEX" , Some ( "1" ) ) ;
67
71
cfg. define ( "WITH_SFTP" , Some ( "1" ) ) ;
72
+ cfg. define ( "WITH_SERVER" , Some ( "1" ) ) ;
68
73
69
74
if target. contains ( "windows" ) {
70
75
cfg. define ( "HAVE_IO_H" , Some ( "1" ) ) ;
@@ -167,6 +172,7 @@ fn main() {
167
172
"auth.c" ,
168
173
"base64.c" ,
169
174
"bignum.c" ,
175
+ "bind_config.c" ,
170
176
"buffer.c" ,
171
177
"callbacks.c" ,
172
178
"chachapoly.c" ,
@@ -220,6 +226,7 @@ fn main() {
220
226
"pki_ed25519_common.c" ,
221
227
"poll.c" ,
222
228
"scp.c" ,
229
+ "server.c" ,
223
230
"session.c" ,
224
231
"sftp.c" ,
225
232
"socket.c" ,
You can’t perform that action at this time.
0 commit comments