libsdl-directfb 1.2.9: Fix build issue after recent kernel headers and gcc upgrades.
authorShane Volpe <shanevolpe@gmail.com>
Sun, 15 Jul 2007 22:09:46 +0000 (22:09 +0000)
committerShane Volpe <shanevolpe@gmail.com>
Sun, 15 Jul 2007 22:09:46 +0000 (22:09 +0000)
and added missing CLFAGS include for directfb

packages/libsdl/libsdl-directfb_1.2.9.bb

index aa089e0..049ebab 100644 (file)
@@ -5,17 +5,27 @@ DEPENDS = "alsa-lib directfb"
 PROVIDES = "virtual/libsdl"
 LICENSE = "LGPL"
 
-PR = "r1"
+PR = "r2"
 DEFAULT_PREFERENCE = "-1"
 
 SRC_URI = "http://www.libsdl.org/release/SDL-${PV}.tar.gz \
-          file://extra-keys.patch;patch=1 \
-          file://directfb_obsolete_calls.patch;patch=1 \
-          file://acinclude.m4"
+           file://agawa-piro-mickey-1.2.9.patch;patch=1 \
+           file://pygame-1.2.9.patch;patch=1 \
+           file://mouse-1.2.9.patch;patch=1 \
+          file://kill-stdc++-1.2.9.patch;patch=1 \
+          file://ipaq-1.2.9.patch;patch=1 \
+          file://SDL-Akita-1.2.9.patch;patch=1 \
+          file://fixlibs-1.2.9.patch;patch=1 \
+          file://no-PAGE_SIZE.patch;patch=1 \
+          file://explicit-extern-C.patch;patch=1 \
+          file://acinclude.m4 \
+          file://directfb_obsolete_calls.patch;patch=1"
 S = "${WORKDIR}/SDL-${PV}"
 
 inherit autotools binconfig
 
+CFLAGS_append  += " -I${STAGING_INCDIR}/directfb -I${STAGING_INCDIR}/directfb-internal"
+
 EXTRA_OECONF = "--disable-static --disable-debug --enable-cdrom --enable-threads --enable-timers --enable-endian \
                 --enable-file --enable-oss --enable-alsa --disable-esd --disable-arts \
                 --disable-diskaudio --disable-nas --disable-esd-shared --disable-esdtest \
@@ -30,16 +40,19 @@ FILES_${PN}-dev += "${bindir}/*config"
 
 do_configure_prepend() {
        rm -f ${S}/acinclude.m4
-       cp ${WORKDIR}/acinclude.m4 ${S}/
+        cp ${WORKDIR}/acinclude.m4 ${S}/
+       if [ "${PALMTOP_USE_MULTITHREADED_QT}" == "yes" ]
+       then
+               sed -i s,-lqte,-lqte-mt, src/Makefile
+       fi      
 }
-
 do_configure_append () {
        cd ${S}
 
        # prevent libtool from linking libs against libstdc++, libgcc, ...
        cat ${TARGET_PREFIX}libtool | sed -e 's/postdeps=".*"/postdeps=""/' > ${TARGET_PREFIX}libtool.tmp
        mv ${TARGET_PREFIX}libtool.tmp ${TARGET_PREFIX}libtool
-       find ${S} -type f | xargs sed -i 's:I/usr/include:I${STAGING_INCDIR}:g'
+#      find ${S} -type f | xargs sed -i 's:I/usr/include:I${STAGING_INCDIR}:g'
 
 }