]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Revise build.info
authorHugo Landau <hlandau@openssl.org>
Fri, 24 Mar 2023 16:23:40 +0000 (16:23 +0000)
committerHugo Landau <hlandau@openssl.org>
Thu, 30 Mar 2023 10:14:17 +0000 (11:14 +0100)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20348)

crypto/thread/build.info
ssl/build.info

index 1e9b97d48a54265424a7ad376e87cca190c06397..8b9cc54af388dbbc0d6524efa4e5a718b43e2c21 100644 (file)
@@ -1,9 +1,16 @@
 LIBS=../../libcrypto
 
 IF[{- !$disabled{'thread-pool'} -}]
-  $THREADS=\
-        api.c internal.c arch.c \
+  $THREADS_ARCH=\
+        arch.c  \
         arch/thread_win.c arch/thread_posix.c arch/thread_none.c
+
+  $THREADS=\
+        api.c internal.c $THREADS_ARCH
+
+  IF[{- !$disabled{quic} -}]
+    SHARED_SOURCE[../../libssl]=$THREADS_ARCH
+  ENDIF
 ELSE
   $THREADS=api.c
 ENDIF
index 4b43a4ce01437370a153154b998837da6732ad73..00e9e8fd7d4908e907fcf5b6a7f6e6d2697f4c65 100644 (file)
@@ -33,13 +33,4 @@ ENDIF
 
 IF[{- !$disabled{quic} -}]
   SOURCE[../libssl]=priority_queue.c event_queue.c
-
-  IF[{- !$disabled{'thread-pool'} -}]
-    SHARED_SOURCE[../libssl]=\
-      ../crypto/thread/arch/thread_posix.c \
-      ../crypto/thread/arch/thread_win.c \
-      ../crypto/thread/arch/thread_none.c \
-      ../crypto/thread/arch.c
-  ENDIF
-
 ENDIF