Skip to content

Commit

Permalink
x11-misc/compose-tables: Pass keysymdefdir
Browse files Browse the repository at this point in the history
We don't want to look at the host's keysymdef.h, but the target board's
version.

--with-keysymdefdir=DIR The location of keysymdef.h (defaults to xproto
                        include dir)

Without this change we get the following:

    checking keysym definitions...  /usr/include/X11/keysymdef.h
    /usr/include/X11/XF86keysym.h /usr/include/X11/Sunkeysym.h
    /usr/include/X11/DECkeysym.h /usr/include/X11/HPkeysym.h

With this change:

    checking keysym definitions...
    /build/arm64-generic/usr/include/X11/keysymdef.h
    /build/arm64-generic/usr/include/X11/XF86keysym.h
    /build/arm64-generic/usr/include/X11/Sunkeysym.h
    /build/arm64-generic/usr/include/X11/DECkeysym.h
    /build/arm64-generic/usr/include/X11/HPkeysym.h

Signed-off-by: Raul E Rangel <[email protected]>
Signed-off-by: Matt Turner <[email protected]>
  • Loading branch information
Raul E Rangel authored and mattst88 committed Mar 21, 2023
1 parent 7edade2 commit ff99b5f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ XORG_CONFIGURE_OPTIONS=(
--without-fop
--disable-specs
--disable-xkb
--with-keysymdefdir="${ESYSROOT}/usr/include/X11"
)

src_compile() {
Expand Down

0 comments on commit ff99b5f

Please sign in to comment.