From 7ee26f974a6a3c7db0c285f90e7952d9903176cb Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Tue, 22 Jan 2019 11:06:14 +0900 Subject: [PATCH] tingle: ++ pthread lib dependency. --- src/tingle/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tingle/makefile b/src/tingle/makefile index 8b07bc1..17cf215 100644 --- a/src/tingle/makefile +++ b/src/tingle/makefile @@ -1,7 +1,7 @@ PROGRAM=tingle SOURCES=tingle.c CFLAGS=-O2 -Wall -pedantic -std=c99 -lpthread -LDFLAGS=-lm +LDFLAGS=-lm -pthread HAVE_ALSA := 0 ALSA_TEST := $(shell pkg-config --exists alsa 1>&2 2>/dev/null; echo $$?)