From 89e31adbee9f837812fcfdd2490180a2039df20c Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Sat, 26 Nov 2022 14:18:45 +0100 Subject: [PATCH] Move mps modules to the correct library This is a private interface only, so it's an ABI change but not an API change. Signed-off-by: Gilles Peskine --- library/CMakeLists.txt | 4 ++-- library/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index bd832cbb3a..8106dab59a 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -49,8 +49,6 @@ set(src_crypto md.c md5.c memory_buffer_alloc.c - mps_reader.c - mps_trace.c nist_kw.c oid.c padlock.c @@ -103,6 +101,8 @@ set(src_x509 set(src_tls debug.c + mps_reader.c + mps_trace.c net_sockets.c ssl_cache.c ssl_ciphersuites.c diff --git a/library/Makefile b/library/Makefile index 03474d2759..5073517ce9 100644 --- a/library/Makefile +++ b/library/Makefile @@ -114,8 +114,6 @@ OBJS_CRYPTO= \ md.o \ md5.o \ memory_buffer_alloc.o \ - mps_reader.o \ - mps_trace.o \ nist_kw.o \ oid.o \ padlock.o \ @@ -172,6 +170,8 @@ OBJS_X509= \ OBJS_TLS= \ debug.o \ + mps_reader.o \ + mps_trace.o \ net_sockets.o \ ssl_cache.o \ ssl_ciphersuites.o \