libx11/diet-x11: Fix /usr/include problem for keysymdef.h

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3398 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2008-01-02 15:15:36 +00:00
parent 7eed7c05fd
commit f8b1fd4926
3 changed files with 67 additions and 5 deletions

View File

@@ -0,0 +1,62 @@
---
configure.ac | 44 ++++++++++++++++++++++++--------------------
1 file changed, 24 insertions(+), 20 deletions(-)
Index: libX11-1.1.2/configure.ac
===================================================================
--- libX11-1.1.2.orig/configure.ac 2008-01-02 15:30:47.000000000 +0000
+++ libX11-1.1.2/configure.ac 2008-01-02 15:47:25.000000000 +0000
@@ -207,29 +207,33 @@ AC_CHECK_FUNC(poll, [AC_DEFINE(USE_POLL,
#
KEYSYMDEF=""
AC_MSG_CHECKING([keysymdef.h])
-for flag in $XPROTO_CFLAGS -I/usr/include; do
- case "$KEYSYMDEF" in
- "")
- case "$flag" in
- *-I*)
- dir=`echo "$flag" | sed 's/ *-I//'`
- file="$dir/X11/keysymdef.h"
- if test -f "$file"; then
- KEYSYMDEF="$file"
- fi
+AC_ARG_WITH(keysymdef,
+ AC_HELP_STRING([--with-keysymdef=DIR/keysymdef.h], [The location of keysymdef.h]),
+ KEYSYMDEF=$withval, KEYSYMDEF="")
+
+if test x$KEYSYMDEF = x; then
+ for flag in $XPROTO_CFLAGS -I/usr/include; do
+ case "$KEYSYMDEF" in
+ "")
+ case "$flag" in
+ *-I*)
+ dir=`echo "$flag" | sed 's/ *-I//'`
+ file="$dir/X11/keysymdef.h"
+ if test -f "$file"; then
+ KEYSYMDEF="$file"
+ fi
+ ;;
+ esac
;;
esac
- ;;
- esac
-done
-case "$KEYSYMDEF" in
-"")
- AC_MSG_ERROR([Cannot find keysymdef.h])
- ;;
-*)
+ done
+fi
+
+if test -f "$KEYSYMDEF"; then
AC_MSG_RESULT([$KEYSYMDEF])
- ;;
-esac
+else
+ AC_MSG_ERROR([Cannot find keysymdef.h])
+fi
AC_SUBST(KEYSYMDEF)
AC_ARG_ENABLE(udc,

View File

@@ -1,8 +1,8 @@
require libx11_${PV}.bb
SRC_URI += "file://X18NCMSstubs.diff;patch=1 \
file://fix-disable-xlocale.diff;patch=1 \
file://fix-disable-xlocale.diff;patch=1 \
file://fix-utf8-wrong-define.patch;patch=1"
EXTRA_OECONF += "--disable-udc --disable-xcms --disable-xlocale --disable-xkb"
EXTRA_OECONF += "--disable-udc --disable-xcms --disable-xlocale --disable-xkb --with-keysymdef=${STAGING_INCDIR}/X11/keysymdef.h"
CFLAGS += "-D_GNU_SOURCE"

View File

@@ -5,12 +5,12 @@ DEPENDS += "bigreqsproto xproto xextproto xtrans libxau xcmiscproto \
libxdmcp xf86bigfontproto kbproto inputproto"
PROVIDES = "virtual/libx11"
PE = "1"
PR = "r2"
PR = "r3"
XORG_PN = "libX11"
SRC_URI += "file://x11_disable_makekeys.patch;patch=1"
SRC_URI += "file://x11_disable_makekeys.patch;patch=1 \
file://include_fix.patch;patch=1"
EXTRA_OECONF += "--without-xcb"