From: iceman1001 Date: Fri, 6 May 2016 17:01:33 +0000 (+0200) Subject: CHG: hardnested needs malloc.h, which on Darvin (Mac OS X) needs a path to. X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/0fa87186cfb497dca1e086ad679781bb9b87d7f6 CHG: hardnested needs malloc.h, which on Darvin (Mac OS X) needs a path to. --- diff --git a/client/Makefile b/client/Makefile index f79d7698..05793685 100644 --- a/client/Makefile +++ b/client/Makefile @@ -41,6 +41,7 @@ ifneq (,$(findstring MINGW,$(platform))) endif else ifeq ($(platform),Darwin) + CFLAGS += -I/usr/include/malloc/ LDLIBS = -L/opt/local/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)