Skip to content

Commit 1ee16fe

Browse files
committed
♻️ Improve a bit SSL exclude pattern
1 parent 8128d85 commit 1ee16fe

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

quickfix-ffi/Cargo.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,7 @@ include = [
2424
"!/libquickfix/**/Makefile.am",
2525
"!/libquickfix/**/*.sh",
2626
# Exclude SSL related code (we will inject dummy files to replace them in build.rs)
27-
"!/libquickfix/src/C++/SSLSocketAcceptor.*",
28-
"!/libquickfix/src/C++/SSLSocketConnection.*",
29-
"!/libquickfix/src/C++/SSLSocketInitiator.*",
30-
"!/libquickfix/src/C++/ThreadedSSLSocketAcceptor.*",
31-
"!/libquickfix/src/C++/ThreadedSSLSocketConnection.*",
32-
"!/libquickfix/src/C++/ThreadedSSLSocketInitiator.*",
33-
"!/libquickfix/src/C++/UtilitySSL.*",
27+
"!/libquickfix/src/C++/*SSL*.*",
3428
# Exclude Threaded socket application related code (we will inject dummy files to replace them in build.rs)
3529
"!/libquickfix/src/C++/ThreadedSocket*.*",
3630
# Do not include auto generated message files.

quickfix-ffi/build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ fn main() {
4444

4545
// Inject stubs files
4646
let libquickfix_cpp_dir: std::path::PathBuf = libquickfix_build_dir.join("src/C++");
47+
// Below line can be removed when this MR is merged https://github.com/quickfix/quickfix/pull/655
4748
touch_file(libquickfix_cpp_dir.join("SSLSocketAcceptor.h"));
4849
touch_file(libquickfix_cpp_dir.join("SSLSocketConnection.h"));
4950
touch_file(libquickfix_cpp_dir.join("SSLSocketInitiator.h"));

0 commit comments

Comments
 (0)