Commit c40c6e71 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

appends for kubuntu 13.10

parent 45cd1d4e
Index: gettext-0.18.3.1/gettext-tools/gnulib-m4/sleep.m4
===================================================================
--- gettext-0.18.3.1.orig/gettext-tools/gnulib-m4/sleep.m4 2013-08-15 10:25:03.000000000 -0600
+++ gettext-0.18.3.1/gettext-tools/gnulib-m4/sleep.m4 2013-11-21 14:11:23.000000000 -0700
@@ -37,6 +37,11 @@
unsigned int remaining;
signal (SIGALRM, handle_alarm);
alarm (1);
+ remaining = sleep (3);
+ if (remaining == 0)
+ return 5; /* alarm failed to wake from sleep() */
+/* man alarm: sleep(3) may be implemented using SIGALRM; mixing calls to alarm() and sleep(3) is a bad idea.*/
+ alarm (1);
remaining = sleep (pentecost);
if (remaining > pentecost)
return 3;
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
# alarm didn't work in Kubuntu 13.10 (gcc-4.8.1?)
SRC_URI_append = "file://sleep.m4.patch"
\ No newline at end of file
PACKAGECONFIG := "sqlite3"
\ No newline at end of file
DEPENDS := "libpcre openssl ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
\ No newline at end of file
PACKAGECONFIG := ""
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment