summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-core/systemd/systemd/systemd-pam-configure-check-uclibc.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2012-09-17 10:58:11 +0000
committerEric Bénard <eric@eukrea.com>2012-12-16 10:50:28 +0100
commit6e0ddd4526f3e0005babe9381c17c06c22a9eda3 (patch)
treee9289044cc51e14ad4b269c6be3c199c12d45763 /meta-oe/recipes-core/systemd/systemd/systemd-pam-configure-check-uclibc.patch
parent66e169fe502a9d33e074a9207f257a90d28f8186 (diff)
downloadmeta-openembedded-6e0ddd4526f3e0005babe9381c17c06c22a9eda3.tar.gz
systemd: update to v189
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Eric Bénard <eric@eukrea.com>
Diffstat (limited to 'meta-oe/recipes-core/systemd/systemd/systemd-pam-configure-check-uclibc.patch')
-rw-r--r--meta-oe/recipes-core/systemd/systemd/systemd-pam-configure-check-uclibc.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/systemd/systemd/systemd-pam-configure-check-uclibc.patch b/meta-oe/recipes-core/systemd/systemd/systemd-pam-configure-check-uclibc.patch
new file mode 100644
index 000000000..1bfc3bdb1
--- /dev/null
+++ b/meta-oe/recipes-core/systemd/systemd/systemd-pam-configure-check-uclibc.patch
@@ -0,0 +1,26 @@
1--- systemd-185.orig/configure.ac 2012-06-04 14:15:16.000000000 -0400
2+++ systemd-pam-185/configure.ac 2012-06-21 22:57:10.000000000 -0400
3@@ -63,6 +63,23 @@
4
5 AC_PATH_PROG([M4], [m4])
6
7+# check for few functions not implemented in uClibc
8+
9+AC_CHECK_FUNCS_ONCE(mkostemp execvpe posix_fallocate)
10+
11+# check for %ms format support - assume always no if cross compiling
12+
13+AC_MSG_CHECKING([whether %ms format is supported by *scanf])
14+
15+AC_RUN_IFELSE(
16+ [AC_LANG_PROGRAM([[ include <stdio.h> ]],
17+ [[ char *buf1, *buf2, *buf3, str="1 2.3 abcde" ;
18+ int rc = sscanf(str, "%ms %ms %ms", &buf1, &buf2, &buf3) ;
19+ return (rc==3)?0:1;]])],
20+ [AC_DEFINE([HAVE_MSFORMAT], [1], [Define if %ms format is supported by *scanf.])],
21+ [AC_MSG_RESULT([no])],
22+ [AC_MSG_RESULT([no])])
23+
24 # gtkdocize greps for '^GTK_DOC_CHECK', so it needs to be on its own line
25 m4_ifdef([GTK_DOC_CHECK], [
26 GTK_DOC_CHECK([1.18],[--flavour no-tmpl])