https://bugs.kde.org/show_bug.cgi?id=370499

            Bug ID: 370499
           Summary: bug in FindFFmpeg.cmake
           Product: frameworks-kfilemetadata
           Version: 5.27.0
          Platform: Compiled Sources
                OS: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: general
          Assignee: pinak.ah...@gmail.com
          Reporter: rjvber...@gmail.com

There's a typo causing a bug in FindFFmpeg.cmake that causes it to consider
libpostproc "not found" even if it's installed.

Reproducible: Always

Steps to Reproduce:
configure kfilemetadata with a compatible FFMpeg installed

Actual Results:  
libpostproc is considered not available

Expected Results:  
all installed FFMpeg components should be found

--- cmake/orig.FindFFmpeg.cmake    2016-10-11 21:21:21.000000000 +0200
+++ cmake/FindFFmpeg.cmake    2016-10-11 21:49:52.000000000 +0200
@@ -124,7 +126,7 @@
   find_component(AVDEVICE libavdevice avdevice libavdevice/avdevice.h)
   find_component(AVUTIL   libavutil   avutil   libavutil/avutil.h)
   find_component(SWSCALE  libswscale  swscale  libswscale/swscale.h)
-  find_component(POSTPROC libpostproc postproc libpostproc/postprocess.h)
+  find_component(POSTPROCESS libpostproc postproc libpostproc/postprocess.h)

   # Check if the required components were found and add their stuff to the
FFMPEG_* vars.
   foreach (_component ${FFmpeg_FIND_COMPONENTS})

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to