Skip to content

Commit

Permalink
xapian-core: fix config.cmake for cross compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnnynator committed May 15, 2019
1 parent 7f75111 commit 0e9e7a3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions srcpkgs/xapian-core/patches/cross-config.cmake.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
--- cmake/xapian-config.cmake.in 2019-03-02 02:45:31.000000000 +0100
+++ - 2019-05-15 15:59:12.059370469 +0200
@@ -1,4 +1,14 @@
-SET(prefix "@prefix@")
+get_filename_component(prefix "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
+# Use original install prefix when loaded through a "/usr move"
+# cross-prefix symbolic link such as /lib -> /usr/lib.
+get_filename_component(_realCurr "${CMAKE_CURRENT_LIST_DIR}" REALPATH)
+get_filename_component(_realOrig "@prefix@/lib/cmake/xapian" REALPATH)
+if(_realCurr STREQUAL _realOrig)
+ set(prefix "@prefix@")
+endif()
+unset(_realOrig)
+unset(_realCurr)
+
SET(exec_prefix "@exec_prefix@")
SET(XAPIAN_LIBRARIES "@libdir@/libxapian@LIBRARY_VERSION_SUFFIX@@SHLIBEXT@" CACHE FILEPATH "Libraries for Xapian")
SET(XAPIAN_INCLUDE_DIR "@incdir@" CACHE PATH "Include path for Xapian")
2 changes: 1 addition & 1 deletion srcpkgs/xapian-core/template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Template file for 'xapian-core'
pkgname=xapian-core
version=1.4.11
revision=1
revision=2
build_style=gnu-configure
configure_args="--disable-static"
makedepends="zlib-devel libuuid-devel"
Expand Down

0 comments on commit 0e9e7a3

Please sign in to comment.