[Digikam-devel] [digikam] [Bug 316620] htmlexport don't builds

Kevin Kofler kevin.kofler at chello.at
Tue Mar 12 22:10:14 GMT 2013


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

Kevin Kofler <kevin.kofler at chello.at> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kevin.kofler at chello.at

--- Comment #2 from Kevin Kofler <kevin.kofler at chello.at> ---
These 3 lines:
+    if (NOT LIBXSLT_EXSLT_LIBRARIES AND NOT LIBXSLT_LIBRARIES)
+        set(LIBXSLT_EXSLT_LIBRARIES ${LIBXSLT_LIBRARIES})
+    endif (NOT LIBXSLT_EXSLT_LIBRARIES AND NOT LIBXSLT_LIBRARIES)
in the patch are wrong:
1. There's a typo or thinko (3 times), it should say LIBEXSLT_LIBRARIES
everywhere in these 3 lines, not LIBXSLT_LIBRARIES.
2. There should be no NOT in front of LIBEXSLT_LIBRARIES in the if condition.

In other words, the above 3 lines should read:
+    if (NOT LIBXSLT_EXSLT_LIBRARIES AND LIBEXSLT_LIBRARIES)
+        set(LIBXSLT_EXSLT_LIBRARIES ${LIBEXSLT_LIBRARIES})
+    endif (NOT LIBXSLT_EXSLT_LIBRARIES AND LIBEXSLT_LIBRARIES)

-- 
You are receiving this mail because:
You are the assignee for the bug.



More information about the Digikam-devel mailing list