From bb328c629c7ca7088925973216731f6e26e4bef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20S=C3=B6ntgen?= Date: Wed, 28 Nov 2018 11:13:57 +0100 Subject: [PATCH] Remove pthread library from $(LIBS) It was moved into the libc. Fixes #126. --- src/app/audio_player/target.mk | 2 +- src/app/chuck/target.mk | 2 +- src/app/ltris/target.mk | 2 +- src/app/tor/target.mk | 2 +- src/test/glib/target.mk | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/audio_player/target.mk b/src/app/audio_player/target.mk index bae4ef7..80299cf 100644 --- a/src/app/audio_player/target.mk +++ b/src/app/audio_player/target.mk @@ -1,6 +1,6 @@ TARGET = audio_player SRC_CC = main.cc INC_DIR += $(PRG_DIR) -LIBS := base libc avcodec avformat avutil avresample pthread +LIBS := base libc avcodec avformat avutil avresample CC_CXX_WARN_STRICT = diff --git a/src/app/chuck/target.mk b/src/app/chuck/target.mk index 91be969..80e81a8 100644 --- a/src/app/chuck/target.mk +++ b/src/app/chuck/target.mk @@ -1,6 +1,6 @@ TARGET := chuck -LIBS += base libc libm pthread stdcxx rtaudio liblo sdl +LIBS += base libc libm stdcxx rtaudio liblo sdl LIBS += libsndfile libogg libvorbis libFLAC CHUCK_SRC_DIR = $(call select_from_ports,chuck)/src/app/chuck/src diff --git a/src/app/ltris/target.mk b/src/app/ltris/target.mk index 0345879..77e4c0f 100644 --- a/src/app/ltris/target.mk +++ b/src/app/ltris/target.mk @@ -1,5 +1,5 @@ TARGET = ltris -LIBS = libc libm stdcxx sdlmain sdl sdl_mixer pthread +LIBS = libc libm stdcxx sdlmain sdl sdl_mixer LTRIS_DIR := $(call select_from_ports,ltris)/src/app/ltris diff --git a/src/app/tor/target.mk b/src/app/tor/target.mk index 7f6becf..c90e2d8 100644 --- a/src/app/tor/target.mk +++ b/src/app/tor/target.mk @@ -1,5 +1,5 @@ TARGET = tor -LIBS = libevent posix libssl libcrypto zlib pthread +LIBS = libevent posix libssl libcrypto zlib LIBS += libc_lwip_nic_dhcp TOR_DIR = $(call select_from_ports,tor)/src/app/tor INC_DIR = $(PRG_DIR) \ diff --git a/src/test/glib/target.mk b/src/test/glib/target.mk index c4bbe3a..a19507d 100644 --- a/src/test/glib/target.mk +++ b/src/test/glib/target.mk @@ -1,5 +1,5 @@ TARGET = test-glib -LIBS = libc pthread glib posix +LIBS = libc glib posix SRC_C = main.c # Strength through pointer arithmetic