summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Zapolskiy <vladimir_zapolskiy@mentor.com>2012-12-18 13:49:37 +0200
committerOtavio Salvador <otavio@ossystems.com.br>2012-12-21 15:33:04 -0200
commit9a94405c652d459b0168d96ffb5b2020368bca1e (patch)
tree7629913798dc5086df792e9a82d4335353b0cdd1
parentd1f1c6e783597581376c8c6ac0ad15d1b488da34 (diff)
downloadmeta-fsl-arm-9a94405c652d459b0168d96ffb5b2020368bca1e.tar.gz
xf86-video-imxfb-vivante: add dependency on X11
Prior to xf86-video-imxfs-vivante there should be built libX11. This change fixes an issue met on configuration stage: | configure:3303: checking whether the C compiler works | configure:3325: arm-mentor-linux-gnueabi-gcc -march=armv7-a -mthumb-interwork -mfloat-abi=softfp -mfpu=neon -mtune=cortex-a9 -mno-unaligned-access [snip] -lm -ldl -lGAL-x11 conftest.c >&5 | /opt/projects/mentor/thales-mel6.0/build/tmp/sysroots/imx6qsabrelite/usr/lib/libGAL-x11.so: undefined reference to `XWidthOfScreen' [snip] | collect2: ld returned 1 exit status Signed-off-by: Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>
-rw-r--r--recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_12.09.01.bb6
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_12.09.01.bb b/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_12.09.01.bb
index e319199..2b0d0a0 100644
--- a/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_12.09.01.bb
+++ b/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante_12.09.01.bb
@@ -3,7 +3,9 @@
3 3
4require recipes-graphics/xorg-driver/xorg-driver-video.inc 4require recipes-graphics/xorg-driver/xorg-driver-video.inc
5 5
6DEPENDS += "virtual/libgal-x11 gpu-viv-bin-mx6q" 6PR = "${INC_PR}.1"
7
8DEPENDS += "virtual/libx11 virtual/libgal-x11 gpu-viv-bin-mx6q"
7 9
8LIC_FILES_CHKSUM = "file://src/vivante_fbdev/vivante.h;endline=19;md5=93a322f91ec495569dcbcfbb2a95454a" 10LIC_FILES_CHKSUM = "file://src/vivante_fbdev/vivante.h;endline=19;md5=93a322f91ec495569dcbcfbb2a95454a"
9 11
@@ -14,7 +16,7 @@ SRC_URI[sha256sum] = "5b3be4b426d2d2803554df9e4d8919d1f9d17659c3153c71c6529f43c3
14 16
15EXTRA_OECONF_armv7a = " --enable-neon --disable-static" 17EXTRA_OECONF_armv7a = " --enable-neon --disable-static"
16CFLAGS += " -I${STAGING_INCDIR}/xorg -I${STAGING_INCDIR}/drm" 18CFLAGS += " -I${STAGING_INCDIR}/xorg -I${STAGING_INCDIR}/drm"
17LDFLAGS += "-lm -ldl -lGAL-x11" 19LDFLAGS += "-lm -ldl -lX11 -lGAL-x11"
18 20
19S = "${WORKDIR}/xserver-xorg-video-imx-viv-${PV}" 21S = "${WORKDIR}/xserver-xorg-video-imx-viv-${PV}"
20 22