]> code.ossystems Code Review - openembedded-core.git/commitdiff
pimlico/dates: Fix build on uclibc
authorKhem Raj <raj.khem@gmail.com>
Mon, 18 Jul 2011 22:55:21 +0000 (15:55 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 20 Jul 2011 14:25:01 +0000 (15:25 +0100)
uclibc does not have NL_TIME_FIRST_WEEKDAY

Signed-off-by: Khem Raj <raj.khem@gmail.com>
meta/recipes-sato/pimlico/dates.inc
meta/recipes-sato/pimlico/dates/uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch [new file with mode: 0644]
meta/recipes-sato/pimlico/dates_git.bb

index 01ab409625f35b87bc1d0bba5a8cb075a7970d08..b3be6b6b00f17f78abe041a15e4285bce4808e01 100644 (file)
@@ -8,7 +8,7 @@ SECTION = "x11"
 DEPENDS = "glib-2.0 gtk+ libglade eds-dbus"
 RDEPENDS_${PN} = "libedata-cal"
 
-inherit autotools pkgconfig gtk-icon-cache
+inherit autotools gettext pkgconfig gtk-icon-cache
 
 # Poky/Sato specific enhancements
 OWL = "--disable-owl"
diff --git a/meta/recipes-sato/pimlico/dates/uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch b/meta/recipes-sato/pimlico/dates/uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch
new file mode 100644 (file)
index 0000000..6ade470
--- /dev/null
@@ -0,0 +1,37 @@
+uclibc has langinfo.h but it does not define _NL_TIME_FIRST_WEEKDAY
+therefore we introduce a check in configure for the this define
+and then we make sure that we use it when it really exists
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Pending
+
+Index: git/configure.ac
+===================================================================
+--- git.orig/configure.ac      2011-07-18 10:34:15.000000000 -0700
++++ git/configure.ac   2011-07-18 10:54:26.403798188 -0700
+@@ -98,6 +98,8 @@
+               src/libgtkdatesview.pc
+ ])
++AC_CHECK_DECLS([_NL_TIME_FIRST_WEEKDAY],[],[],[[#include <langinfo.h>]])
++
+ AC_OUTPUT
+ echo " "
+Index: git/src/dates_view.c
+===================================================================
+--- git.orig/src/dates_view.c  2011-07-18 10:34:15.000000000 -0700
++++ git/src/dates_view.c       2011-07-18 10:58:46.093798136 -0700
+@@ -1505,7 +1505,11 @@
+       priv->days = 1;
+       priv->months = 0;
+       priv->months_in_row = 4;
++#if HAVE_DECL__NL_TIME_FIRST_WEEKDAY
+       priv->week_start = *nl_langinfo (_NL_TIME_FIRST_WEEKDAY) - 1;
++#else
++      priv->week_start = 0;
++#endif
+       priv->dragbox = TRUE;
+       priv->single_click = TRUE;
+       priv->double_click = FALSE;
index 4b6a3e9f4130731dd290806e5dcdcbee2c438266..094ef30e88cb486142a54719dc9afcd6dbc06766 100644 (file)
@@ -7,10 +7,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
 
 SRCREV = "514185dc1f6588085fda41eb59898b93d0487dd4"
 PV = "0.4.11+git${SRCPV}"
-PR = "r3"
+PR = "r4"
 
 S = "${WORKDIR}/git"
 
 SRC_URI = "git://git.gnome.org/${BPN};protocol=git \
           file://make-382.patch \
-          file://dso_linking_change_build_fix.patch"
+          file://dso_linking_change_build_fix.patch \
+          file://uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch \
+          "