From 9ab6962972973c9a6704a5ba1d08e2cbad505668 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 17 Oct 2012 12:18:12 +0000 Subject: console-tools: Clean up recipe This cleans up various bits of nastiness in this recipe: * Drop unneeded m4 macros * Update to a recent version of gettext (needs addition of Makevars file) * Drop split do_compile and SUBDIRS hacks, just patch out the docs * Remove some of the configure.in hacks since they seem unneeded now and break gettext (the AC_OUTPUT change). * Wipe out acinclude.m4 since it has corrisive contents (From OE-Core rev: 8302b403336f06075fc56bf9a1536a6274016378) Signed-off-by: Richard Purdie --- .../console-tools-0.3.2/config/glibc21.m4 | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 meta/recipes-core/console-tools/console-tools-0.3.2/config/glibc21.m4 (limited to 'meta/recipes-core/console-tools/console-tools-0.3.2/config/glibc21.m4') diff --git a/meta/recipes-core/console-tools/console-tools-0.3.2/config/glibc21.m4 b/meta/recipes-core/console-tools/console-tools-0.3.2/config/glibc21.m4 deleted file mode 100644 index 5b88ef231c..0000000000 --- a/meta/recipes-core/console-tools/console-tools-0.3.2/config/glibc21.m4 +++ /dev/null @@ -1,26 +0,0 @@ -#serial 2 - -# Test for the GNU C Library, version 2.1 or newer. -# From Bruno Haible. - -AC_DEFUN([jm_GLIBC21], - [ - AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer, - ac_cv_gnu_library_2_1, - [AC_EGREP_CPP([Lucky GNU user], - [ -#include -#ifdef __GNU_LIBRARY__ - #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) - Lucky GNU user - #endif -#endif - ], - ac_cv_gnu_library_2_1=yes, - ac_cv_gnu_library_2_1=no) - ] - ) - AC_SUBST(GLIBC21) - GLIBC21="$ac_cv_gnu_library_2_1" - ] -) -- cgit v1.2.3-54-g00ecf