diff options
author | Scott Garman <sgarman@zenlinux.com> | 2010-07-23 12:04:10 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-24 00:07:31 +0100 |
commit | 80986444aaa796b45658f4d903f88d26a2379b5f (patch) | |
tree | d4a588829286e516819e06ef2219a0fc84d80dd8 /meta/packages/at/at-3.1.10.2 | |
parent | d6ba72ac3425596aae96ccfd1ddbbaaf20b11705 (diff) | |
download | openembedded-core-80986444aaa796b45658f4d903f88d26a2379b5f.tar.gz openembedded-core-80986444aaa796b45658f4d903f88d26a2379b5f.tar.bz2 openembedded-core-80986444aaa796b45658f4d903f88d26a2379b5f.zip |
at: New recipe additions 3.1.10.2 and 3.1.12
* at 3.1.12 is GPLv3
* at 3.1.10.2 is latest GPLv2
Recipes and patches derived from OpenEmbedded
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Diffstat (limited to 'meta/packages/at/at-3.1.10.2')
-rw-r--r-- | meta/packages/at/at-3.1.10.2/configure.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/packages/at/at-3.1.10.2/configure.patch b/meta/packages/at/at-3.1.10.2/configure.patch new file mode 100644 index 0000000000..f6720111d6 --- /dev/null +++ b/meta/packages/at/at-3.1.10.2/configure.patch @@ -0,0 +1,22 @@ +# Fix cross-compilation issues in configure.ac +# Derived from an OE patch for at-3.1.8 + +--- at-3.1.10.2.orig/configure.in 2005-08-04 20:16:02.000000000 -0700 ++++ at-3.1.10.2/configure.in 2010-07-21 15:52:38.000000000 -0700 +@@ -37,12 +37,11 @@ + AC_MSG_RESULT(no) + ;; + esac ++if [ X"${cross_compiling}" = Xno ]; then + AC_MSG_CHECKING(Trying to compile a trivial ANSI C program) +-AC_TRY_RUN([ main(int ac, char **av) { return 0; } ], +- AC_MSG_RESULT(yes), +- AC_MSG_RESULT(no) +- AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.), +- AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.)) ++AC_RUN_IFELSE([AC_LANG_SOURCE([[ main(int ac, char **av) { return 0; } ]])],[AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no) ++ AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.)],[AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.)]) ++fi + + AC_MSG_CHECKING(__attribute__((noreturn))) + AC_TRY_COMPILE([], [void __attribute__((noreturn)) panic(void);], |