Navigation Menu

Skip to content

Commit

Permalink
Remove unnecessary linking against libvlccore
Browse files Browse the repository at this point in the history
libvlccore is for plugins, but GoldenCheetah does not build a plugin. It
requires only functions available from libvlc.

Signed-off-by: Sebastian Ramacher <sramacher@debian.org>
  • Loading branch information
sebastinas committed Dec 21, 2017
1 parent a9a88e6 commit 3dd2080
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/gcconfig.pri.in
Expand Up @@ -211,9 +211,9 @@
# This will automatically set (Windows and Unix):
# VLC_INCLUDE = $${VLC_INSTALL}/include
# For Windows
# VLC_LIBS = $${VLC_INSTALL}/lib/libvlc.dll.a $${VLC_INSTALL}/lib/libvlccore.dll.a
# VLC_LIBS = $${VLC_INSTALL}/lib/libvlc.dll.a
# For Unix
# VLC_LIBS = -lvlc -lvlccore
# VLC_LIBS = -lvlc
# You may override the INCLUDE and LIB files if you like.
# You *must* define VLC_INSTALL to use this feature.
#VLC_INSTALL =
Expand Down
2 changes: 1 addition & 1 deletion src/src.pro
Expand Up @@ -537,7 +537,7 @@ unix:!macx {

# we will work out the rest if you tell use where it is installed
isEmpty(VLC_INCLUDE) { VLC_INCLUDE = $${VLC_INSTALL}/include }
isEmpty(VLC_LIBS) { VLC_LIBS = -L$${VLC_INSTALL}/lib -lvlc -lvlccore }
isEmpty(VLC_LIBS) { VLC_LIBS = -L$${VLC_INSTALL}/lib -lvlc }

DEFINES += GC_HAVE_VLC
INCLUDEPATH += $${VLC_INCLUDE}
Expand Down

0 comments on commit 3dd2080

Please sign in to comment.