From patchwork Thu Jul 26 20:37:03 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: owl-video_git.bb: fix compilation on Fedora 13 machine Date: Thu, 26 Jul 2012 20:37:03 -0000 From: Matthew McClintock X-Patchwork-Id: 33165 Message-Id: <1343335023-28938-1-git-send-email-msm@freescale.com> To: This adds libXrandr to the link step and fixes this issue: | /opt/yocto/upstream/label/master/machine/atom-pc/poky/edison/tmp/sysroots/atom-pc/usr/lib/libgdk-x11-2.0.so: undefined reference to `XRRGetOutputInfo' | /opt/yocto/upstream/label/master/machine/atom-pc/poky/edison/tmp/sysroots/atom-pc/usr/lib/libgdk-x11-2.0.so: undefined reference to `XRRGetScreenResourcesCurrent' | /opt/yocto/upstream/label/master/machine/atom-pc/poky/edison/tmp/sysroots/atom-pc/usr/lib/libgdk-x11-2.0.so: undefined reference to `XRRFreeOutputInfo' | /opt/yocto/upstream/label/master/machine/atom-pc/poky/edison/tmp/sysroots/atom-pc/usr/lib/libgdk-x11-2.0.so: undefined reference to `XRRFreeScreenResources' | /opt/yocto/upstream/label/master/machine/atom-pc/poky/edison/tmp/sysroots/atom-pc/usr/lib/libgdk-x11-2.0.so: undefined reference to `XRRGetOutputPrimary' | /opt/yocto/upstream/label/master/machine/atom-pc/poky/edison/tmp/sysroots/atom-pc/usr/lib/libgdk-x11-2.0.so: undefined reference to `XRRFreeCrtcInfo' | /opt/yocto/upstream/label/master/machine/atom-pc/poky/edison/tmp/sysroots/atom-pc/usr/lib/libgdk-x11-2.0.so: undefined reference to `XRRGetCrtcInfo' | collect2: ld returned 1 exit status Signed-off-by: Matthew McClintock --- .../owl-video/0001-add-dependency-for-xrandr.patch | 30 ++++++++++++++++++++ .../recipes-sato/owl-video-widget/owl-video_git.bb | 5 ++-- 2 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 meta/recipes-sato/owl-video-widget/owl-video/0001-add-dependency-for-xrandr.patch diff --git a/meta/recipes-sato/owl-video-widget/owl-video/0001-add-dependency-for-xrandr.patch b/meta/recipes-sato/owl-video-widget/owl-video/0001-add-dependency-for-xrandr.patch new file mode 100644 index 0000000..8c14578 --- /dev/null +++ b/meta/recipes-sato/owl-video-widget/owl-video/0001-add-dependency-for-xrandr.patch @@ -0,0 +1,30 @@ +Upstream-Status: Pending + +This patch should probably go upstream + +From 18bdd57b36489439dc5c18b20abd9d59c6778662 Mon Sep 17 00:00:00 2001 +From: Matthew McClintock +Date: Wed, 25 Jul 2012 15:05:40 -0500 +Subject: [PATCH] add dependency for xrandr + +Signed-off-by: Matthew McClintock +--- + src/Makefile.am | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/src/Makefile.am b/src/Makefile.am +index 60e845b..00e4b11 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -12,7 +12,7 @@ video_SOURCES = video.c \ + owl-overlay-bin.c \ + owl-overlay-bin.h + +-video_LDADD = $(VIDEO_LIBS) ++video_LDADD = $(VIDEO_LIBS) -lXrandr + + dist_pkgdata_DATA = gtk-fullscreen.png + +-- +1.7.5.4 + diff --git a/meta/recipes-sato/owl-video-widget/owl-video_git.bb b/meta/recipes-sato/owl-video-widget/owl-video_git.bb index bc63273..321b71b 100644 --- a/meta/recipes-sato/owl-video-widget/owl-video_git.bb +++ b/meta/recipes-sato/owl-video-widget/owl-video_git.bb @@ -10,7 +10,7 @@ DEPENDS = "libowl-av" SRCREV = "f133472318970796fae1ea3e98ac062156768baf" PV = "0.1+git${SRCPV}" -PR = "r1" +PR = "r2" S = "${WORKDIR}/git" @@ -23,7 +23,8 @@ SRC_URI = "git://git.yoctoproject.org/${BPN};protocol=git \ file://stock_volume-med.png \ file://stock_volume-max.png \ file://owl-video-widget.desktop \ - file://make-382.patch" + file://make-382.patch \ + file://0001-add-dependency-for-xrandr.patch" inherit autotools pkgconfig