From b0d35995c4c1b748c8adff3c34d64b3596e6c20a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Pawe=C5=82czyk?= Date: Sun, 27 Aug 2023 20:38:46 +0200 Subject: [PATCH] make : add support for building on DragonFlyBSD/NetBSD/OpenBSD (#1212) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 58cd859..b53a432 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ endif # OS specific # TODO: support Windows -ifeq ($(filter $(UNAME_S),Linux Darwin FreeBSD Haiku),$(UNAME_S)) +ifeq ($(filter $(UNAME_S),Linux Darwin DragonFly FreeBSD NetBSD OpenBSD Haiku),$(UNAME_S)) CFLAGS += -pthread CXXFLAGS += -pthread endif