From 260b7b9e3b16af2ac8fa84b1a530cc2da14cae88 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Fri, 2 Aug 2019 15:16:10 +0200 Subject: [PATCH] Won't need libuv anymore --- Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Makefile b/Makefile index e68ee51..8b3a070 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,6 @@ THREADED_EXAMPLE_FILES := HelloWorldThreaded EchoServerThreaded override CXXFLAGS += -std=c++17 -Isrc -IuSockets/src override LDFLAGS += uSockets/*.o -lz -# If we are on macOS we need libuv -ifeq ($(shell uname -s),Darwin) - override LDFLAGS += -luv -endif - .PHONY: examples examples: cd uSockets && WITH_SSL=0 make