File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
123
123
_BITCOIN_QT_CHECK_STATIC_LIBS
124
124
125
125
if test "x$qt_plugin_path" != x; then
126
- QT_LIBS="$QT_LIBS -L$qt_plugin_path/platforms"
126
+ QT_LIBS="$QT_LIBS -L$qt_plugin_path/platforms -L$qt_plugin_path/styles "
127
127
if test -d "$qt_plugin_path/accessible"; then
128
128
QT_LIBS="$QT_LIBS -L$qt_plugin_path/accessible"
129
129
fi
@@ -154,6 +154,7 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
154
154
AX_CHECK_LINK_FLAG ( [ [ -framework Metal] ] ,[ QT_LIBS="$QT_LIBS -framework Metal"] ,[ AC_MSG_ERROR ( could not link against Metal framework ) ] )
155
155
AX_CHECK_LINK_FLAG ( [ [ -framework QuartzCore] ] ,[ QT_LIBS="$QT_LIBS -framework QuartzCore"] ,[ AC_MSG_ERROR ( could not link against QuartzCore framework ) ] )
156
156
_BITCOIN_QT_CHECK_STATIC_PLUGIN([ QCocoaIntegrationPlugin] , [ -lqcocoa] )
157
+ _BITCOIN_QT_CHECK_STATIC_PLUGIN([ QMacStylePlugin] , [ -lqmacstyle] )
157
158
AC_DEFINE ( QT_QPA_PLATFORM_COCOA , 1 , [ Define this symbol if the qt platform is cocoa] )
158
159
elif test "x$TARGET_OS" = xandroid; then
159
160
QT_LIBS="-Wl,--export-dynamic,--undefined=JNI_OnLoad -lqtforandroid -ljnigraphics -landroid -lqtfreetype -lQt5EglSupport $QT_LIBS"
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ Q_IMPORT_PLUGIN(QXcbIntegrationPlugin);
62
62
Q_IMPORT_PLUGIN (QWindowsIntegrationPlugin);
63
63
#elif defined(QT_QPA_PLATFORM_COCOA)
64
64
Q_IMPORT_PLUGIN (QCocoaIntegrationPlugin);
65
+ Q_IMPORT_PLUGIN (QMacStylePlugin);
65
66
#endif
66
67
#endif
67
68
You can’t perform that action at this time.
0 commit comments