From 2ce924c19e8fe8fb67e7cd2aace483e3dffb24cc Mon Sep 17 00:00:00 2001 From: Kang Kai Date: Thu, 3 Mar 2011 12:34:36 +0800 Subject: recipe: add slang from OE slang is the shared library for the S-Lang extension language, and required by newt because of LSB command check Signed-off-by: Kang Kai --- meta/recipes-extended/slang/slang/fix-uclibc.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 meta/recipes-extended/slang/slang/fix-uclibc.patch (limited to 'meta/recipes-extended/slang/slang') diff --git a/meta/recipes-extended/slang/slang/fix-uclibc.patch b/meta/recipes-extended/slang/slang/fix-uclibc.patch new file mode 100644 index 0000000000..c2b8225d07 --- /dev/null +++ b/meta/recipes-extended/slang/slang/fix-uclibc.patch @@ -0,0 +1,11 @@ +--- slang-2.1.3.orig/src/slcommon.c 2007-01-10 18:09:07.000000000 +0200 ++++ slang-2.1.3.orig/src/slcommon.c 2008-03-19 16:09:09.000000000 +0200 +@@ -191,7 +191,7 @@ + return p; + } + +-#if !defined(HAVE_ISSETUGID) && defined(__GLIBC__) && (__GLIBC__ >= 2) ++#if !defined(HAVE_ISSETUGID) && defined(__GLIBC__) && (__GLIBC__ >= 2) && !defined(__UCLIBC__) + extern int __libc_enable_secure; + # define HAVE___LIBC_ENABLE_SECURE 1 + #endif -- cgit 1.2.3-korg