Skip to content

Commit f2bcd37

Browse files
author
Mischa Spiegelmock
authored
Hardcode missing Qt5 libs (libQt5Gui and libQt5OpenGL) to fix missing DSO linkage with qt on Ubuntu 19.10 (#293)
1 parent b4a3fd6 commit f2bcd37

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

configure.ac

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,10 @@ AS_IF([test "$enable_qt" != "no"],
183183
# we have at least qt5 if $have_qt is true
184184
enable_qt=yes
185185
export QT_SELECT=qt5
186+
187+
# we depend on lQt5Gui and lQt5OpenGL
188+
# https://github.com/projectM-visualizer/projectm/issues/271
189+
LIBS="$LIBS -lQt5Gui -lQt5OpenGL"
186190
],
187191
[AS_IF([test "$enable_qt" = "yes"],
188192
[AC_MSG_ERROR(["Qt5 not found"])],

0 commit comments

Comments
 (0)