blob: 4233fa7877f80f6fcdfc8e97ff1422ffcb8a9c11 [file] [log] [blame]
Patrick Williams03907ee2022-05-01 06:28:52 -05001From 9182bc2dc676858a823c477d8f45a578b8c4f69f Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Sun, 12 Jun 2016 04:44:29 -0400
Andrew Geissler90fd73c2021-03-05 15:25:55 -06004Subject: [PATCH] tests/Makefile.am: fix undefined reference to
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005 `pthread_create'
6
7Add missing '-lpthread' to CFLAGS
8
9Upstream-Status: Pending
10
11Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Andrew Geissler90fd73c2021-03-05 15:25:55 -060012
Brad Bishopd7bf8c12018-02-25 22:55:05 -050013---
Patrick Williams03907ee2022-05-01 06:28:52 -050014 tests/Makefile.am | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050016
17diff --git a/tests/Makefile.am b/tests/Makefile.am
Patrick Williams03907ee2022-05-01 06:28:52 -050018index e6953fd..f47e1d3 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050019--- a/tests/Makefile.am
20+++ b/tests/Makefile.am
Patrick Williams03907ee2022-05-01 06:28:52 -050021@@ -76,7 +76,7 @@ t_mpi_bit_LDADD = $(standard_ldadd) @LDADD_FOR_TESTS_KLUDGE@
Andrew Geissler90fd73c2021-03-05 15:25:55 -060022 t_secmem_LDADD = $(standard_ldadd) @LDADD_FOR_TESTS_KLUDGE@
23 testapi_LDADD = $(standard_ldadd) @LDADD_FOR_TESTS_KLUDGE@
24 t_lock_LDADD = $(standard_ldadd) $(GPG_ERROR_MT_LIBS) @LDADD_FOR_TESTS_KLUDGE@
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025-t_lock_CFLAGS = $(GPG_ERROR_MT_CFLAGS)
26+t_lock_CFLAGS = $(GPG_ERROR_MT_CFLAGS) -lpthread
Andrew Geissler90fd73c2021-03-05 15:25:55 -060027 testdrv_LDADD = $(LDADD_FOR_TESTS_KLUDGE)
28
29 # Build a version of the test driver for the build platform.
Patrick Williams03907ee2022-05-01 06:28:52 -050030@@ -95,7 +95,7 @@ else
31 xtestsuite_libs = ../src/.libs/libgcrypt.so*
32 xtestsuite_driver = testdrv
33 t_kdf_LDADD = $(standard_ldadd) $(GPG_ERROR_MT_LIBS) @LDADD_FOR_TESTS_KLUDGE@
34-t_kdf_CFLAGS = $(GPG_ERROR_MT_CFLAGS)
35+t_kdf_CFLAGS = $(GPG_ERROR_MT_CFLAGS) -lpthread
36 endif
37
38 # xcheck uses our new testdrv instead of the automake test runner.