diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit d00f715c81708951fd42dd2f6b3c4ad5df5bb19b
parent 3068d4b4d6f6b3cb54fcd6a5664bb37c9562a6bf
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sun,  4 Jul 2021 22:58:14 +0200

use -pthread in Makefile

Diffstat:
MMakefile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -15,15 +15,15 @@ CFLAGS = -Wall \ UNAME = ${shell uname} ifeq ($(UNAME),FreeBSD) - LIBS = -lncurses -lcurl -lpthread + LIBS = -lncurses -lcurl -pthread endif ifeq ($(UNAME),Linux) - LIBS = -lncursesw -lcurl -lpthread + LIBS = -lncursesw -lcurl -pthread endif ifeq ($(UNAME),Darwin) - LIBS = -lncurses -lcurl -lpthread -framework CoreFoundation + LIBS = -lncurses -lcurl -pthread -framework CoreFoundation endif