Fix for freebsd

This commit is contained in:
Andrew Pamment 2017-03-19 12:53:10 +10:00
parent 10fb4e71db
commit 1584db33eb

View File

@ -41,7 +41,7 @@ DEFS = $(PLATFORMDEF) $(MBDEFS) $(NLDEFS)
# Commands
ifeq ($(OS), FreeBSD)
CC = cc $(CPPFLAGS) $(CFLAGS) $(DEFS) $(LDFLAGS) -I $(INCDIR) -I ../../../deps/ -Wall
CC = cc $(CPPFLAGS) $(CFLAGS) $(DEFS) $(LDFLAGS) -L/usr/local/lib -I $(INCDIR) -I ../../../deps/ -I/usr/local/include -Wall
else
CC = gcc $(CPPFLAGS) $(CFLAGS) $(DEFS) $(LDFLAGS) -I $(INCDIR) -I ../../../deps/ -Wall
endif