Skip to content

Commit

Permalink
build: Fix undefined pthread reference. (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
orbea authored Mar 17, 2021
1 parent 404adbc commit 9e1e3a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ bmc_SOURCES = bmc.c
bmc_LDADD = $(top_builddir)/lib/libqb.la

bmcpt_SOURCES = bmcpt.c
bmcpt_LDADD = $(top_builddir)/lib/libqb.la
bmcpt_CFLAGS = $(PTHREAD_CFLAGS)
bmcpt_LDADD = $(PTHREAD_LIBS) $(top_builddir)/lib/libqb.la

bms_SOURCES = bms.c
bms_CFLAGS = $(GLIB_CFLAGS)
Expand Down

0 comments on commit 9e1e3a2

Please sign in to comment.