Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

openssh: drop openssl and zlib dependencies #2011

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ if(CERVANTES OR KINDLE OR KOBO OR POCKETBOOK)
else()
set(EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL)
endif()
declare_project(thirdparty/openssh ${EXCLUDE_FROM_ALL} DEPENDS openssl zlib)
declare_project(thirdparty/openssh ${EXCLUDE_FROM_ALL})

# openssl
declare_project(thirdparty/openssl)
Expand Down
6 changes: 2 additions & 4 deletions thirdparty/openssh/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ list(APPEND CFG_CMD
--disable-etc-default-login
--disable-lastlog
--with-md5-passwords
--with-openssl
--with-ssl-engine
--without-hardening
--without-openssl
--without-stackprotect
--with-ssl-dir=${STAGING_DIR}
--with-zlib=${STAGING_DIR}
--without-zlib
)

list(APPEND BUILD_CMD COMMAND make sftp-server scp)
Expand Down