From: Bartosz Golaszewski Date: Tue, 13 Dec 2022 10:55:33 +0000 (+0100) Subject: tests: don't link against pthread explicitly X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=662d8b578147b13ca2c711e6cf784d201f462714;p=qemu-gpiodev%2Flibgpiod.git tests: don't link against pthread explicitly We use GLib threads now, so there's no need to link againt pthread. Signed-off-by: Bartosz Golaszewski --- diff --git a/tests/Makefile.am b/tests/Makefile.am index c1239fe..4dd5297 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -8,7 +8,6 @@ AM_CFLAGS += -include $(top_builddir)/config.h AM_CFLAGS += -Wall -Wextra -g -std=gnu89 $(GLIB_CFLAGS) $(GOBJECT_CFLAGS) AM_CFLAGS += -DG_LOG_DOMAIN=\"gpiod-test\" AM_CFLAGS += $(PROFILING_CFLAGS) -AM_LDFLAGS = -pthread LDADD = $(top_builddir)/lib/libgpiod.la LDADD += $(top_builddir)/tests/gpiosim/libgpiosim.la LDADD += $(GLIB_LIBS) $(GOBJECT_LIBS)