Fix use of FontConfig on non linux platforms (FreeBSD, etc.)

just define USE_FC in the Makefile to have text.c compiled with Fontconfig support
This commit is contained in:
Thomas Bernard
2017-12-20 10:50:47 +01:00
committed by Adrien Destugues
parent c65dc04194
commit 589a84fd3d
2 changed files with 4 additions and 6 deletions

View File

@@ -257,6 +257,7 @@ endif
LOPT = $(shell sdl-config --libs) -lSDL_image $(TTFLOPT) -lpng $(LUALOPT) -lm
OBJDIR = ../obj/unix
FCLOPT = -lfontconfig
COPT += -DUSE_FC
CC = gcc
else
ifeq ($(PLATFORM),FreeMiNT) #10
@@ -397,6 +398,7 @@ endif
CC = gcc
OBJDIR = ../obj/unix
FCLOPT = -lfontconfig
COPT += -DUSE_FC
# enable UTF8 filename translation
# For Linux (GLibc), iconv is built into the C library so no LOPT needed.