mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
9d75215a59
* gnu/packages/games.scm (gemrb-0.9.3): New variable. * gnu/packages/patches/gemrb-add-path-suffixes-for-vlc-headers.patch: New file. * gnu/local.mk (dist_patch_DATA): Register patch. Change-Id: Ic05eacf362f9a4ebfe88b1e0967e72e824c4f404 Signed-off-by: Andreas Enge <andreas@enge.fr>
15 lines
581 B
Diff
15 lines
581 B
Diff
Add PATH_SUFFIXES to look inside the sub-directory `vlc` - the original statement
|
|
only check for `vlc.h` inside the directory `include`, `bin`, etc.
|
|
In Guix, however, `vlc.h` lies inside `/gnu/store/<hash>-vlc-x.y.z/include/vlc/vlc.h`
|
|
|
|
--- a/cmake/modules/FindLIBVLC.cmake
|
|
+++ b/cmake/modules/FindLIBVLC.cmake
|
|
@@ -29,7 +29,7 @@ FIND_PATH(LIBVLC_INCLUDE_DIR vlc/vlc.h
|
|
c:/msys/local/include
|
|
NO_DEFAULT_PATH
|
|
)
|
|
-FIND_PATH(LIBVLC_INCLUDE_DIR vlc.h)
|
|
+FIND_PATH(LIBVLC_INCLUDE_DIR vlc.h PATH_SUFFIXES vlc)
|
|
|
|
#Put here path to custom location
|
|
#example: /home/user/vlc/lib etc..
|