diff options
author | fanquake <fanquake@gmail.com> | 2020-09-04 09:41:28 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-11-14 08:54:24 +0800 |
commit | bfd7e33b4b255c3a5ba14993665e04349c6bdf0a (patch) | |
tree | 4da908eacd0f9fe13ef0ab985a91ca4a34fa8ad0 | |
parent | fdde4c7ce624d4dbf72d38e9783c304d70430386 (diff) |
build: remove plugin_no_soname from mac qt qmake.conf
plugin_no_soname was removed from Qt some time ago, see upstream commit
1d034244c261520d5e739534dc264c2500e02b5f. It was replaced with
plugin_with_soname, however that is currently only used (as of 5.15.x)
in the Android Clang mkspec.
-rw-r--r-- | depends/patches/qt/mac-qmake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/patches/qt/mac-qmake.conf b/depends/patches/qt/mac-qmake.conf index ca5d22ac61..18ff645cb0 100644 --- a/depends/patches/qt/mac-qmake.conf +++ b/depends/patches/qt/mac-qmake.conf @@ -1,5 +1,5 @@ MAKEFILE_GENERATOR = UNIX -CONFIG += app_bundle incremental global_init_link_order lib_version_first plugin_no_soname absolute_library_soname +CONFIG += app_bundle incremental global_init_link_order lib_version_first absolute_library_soname QMAKE_INCREMENTAL_STYLE = sublib include(../common/macx.conf) include(../common/gcc-base-mac.conf) |