1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-03 00:38:44 +00:00

Use -fPIC with Qt on *BSD like on Linux

Required on FreeBSD at least.
This commit is contained in:
Greg V 2020-04-02 15:24:54 +03:00
parent 2004545f96
commit f646fea03f

View File

@ -426,6 +426,8 @@ ifeq ($(HAVE_QT), 1)
ifneq ($(findstring Linux,$(OS)),)
DEF_FLAGS += -fPIC
else ifneq ($(findstring BSD,$(OS)),)
DEF_FLAGS += -fPIC
endif
endif