Merge pull request #10384 from myfreeweb/bsd-qt

Use -fPIC with Qt on *BSD like on Linux
This commit is contained in:
Autechre 2020-04-03 01:49:52 +02:00 committed by GitHub
commit 1f2e42cdc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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