From df82844c056b3cb942bb055ab216161e5d4607e1 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 6 May 2016 19:52:04 +0200 Subject: [PATCH] FIX: more paths for readline and Mac Os X --- client/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Makefile b/client/Makefile index 05793685..2aa7339c 100644 --- a/client/Makefile +++ b/client/Makefile @@ -41,8 +41,8 @@ ifneq (,$(findstring MINGW,$(platform))) endif else ifeq ($(platform),Darwin) - CFLAGS += -I/usr/include/malloc/ - LDLIBS = -L/opt/local/lib -lreadline -lpthread -lm + CFLAGS += -I/usr/include/malloc/ -I/usr/local/opt/readline/include + LDLIBS = -L/opt/local/lib -L/usr/local/opt/readline/lib -lreadline -lpthread -lm CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) MOC = $(shell pkg-config --variable=moc_location QtCore) -- 2.39.5