diff options
author | rakuco <rakuco@FreeBSD.org> | 2017-03-28 04:16:00 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2017-03-28 04:16:00 +0800 |
commit | 18f6fbb7c7c6b9821df0568fa077abbde53c063e (patch) | |
tree | 3849f2bc5cd04ee5a75c564dd693ac52a0bbb621 /graphics/digikam-kde4 | |
parent | c5cd2da42185f94e75121ceb59dfa174d2955f10 (diff) | |
download | freebsd-ports-gnome-18f6fbb7c7c6b9821df0568fa077abbde53c063e.tar.gz freebsd-ports-gnome-18f6fbb7c7c6b9821df0568fa077abbde53c063e.tar.zst freebsd-ports-gnome-18f6fbb7c7c6b9821df0568fa077abbde53c063e.zip |
Unbreak after r436971.
Make sure libqlr-1.so's full path is passed to the linker, as -L${LOCALBASE} is
no longer being passed implicitly.
Submitted by: tcberner (area51 r12732)
Diffstat (limited to 'graphics/digikam-kde4')
-rw-r--r-- | graphics/digikam-kde4/files/patch-CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/digikam-kde4/files/patch-CMakeLists.txt b/graphics/digikam-kde4/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..34fd64f54371 --- /dev/null +++ b/graphics/digikam-kde4/files/patch-CMakeLists.txt @@ -0,0 +1,11 @@ +Make sure liblqr-1.so's full path is passed to the linker. +--- CMakeLists.txt.orig 2016-06-16 18:45:54 UTC ++++ CMakeLists.txt +@@ -557,6 +557,7 @@ if(DIGIKAM_CAN_BE_COMPILED) + if(LQR-1_FOUND) + include_directories(${LQR-1_INCLUDE_DIRS}) + set(liblqr_LIBS ${LQR-1_LIBRARIES}) ++ link_directories(${LQR-1_LIBDIR}) + endif() + + # Lensfun library rules |