Skip to content

Commit

Permalink
the ffmpeg codec should link against libavutil, failure to do so can …
Browse files Browse the repository at this point in the history
…cause build time failures on some platforms (win32), and runtime failures on others (with stricter dependency loading)

git-svn-id: https://xpra.org/svn/Xpra/trunk@14675 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jan 1, 2017
1 parent fdde555 commit 836fa55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2353,7 +2353,7 @@ def osx_pkgconfig(*pkgs_options, **ekw):

toggle_packages(enc_ffmpeg_ENABLED, "xpra.codecs.enc_ffmpeg")
if enc_ffmpeg_ENABLED:
ffmpeg_pkgconfig = pkgconfig("libavcodec", "libavformat")
ffmpeg_pkgconfig = pkgconfig("libavcodec", "libavformat", "libavutil")
cython_add(Extension("xpra.codecs.enc_ffmpeg.encoder",
["xpra/codecs/enc_ffmpeg/encoder.pyx"]+membuffers_c,
**ffmpeg_pkgconfig))
Expand Down

0 comments on commit 836fa55

Please sign in to comment.