summaryrefslogtreecommitdiff
path: root/meta/recipes-extended/at/at-3.1.10.2
diff options
context:
space:
mode:
authorSaul Wold <Saul.Wold@intel.com>2010-08-31 16:48:22 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-02 09:50:49 +0100
commite384d62afaa17f8cd2124cb0785b18130c690e64 (patch)
tree2ae657f0d17f1ea359db038eb2a2af5232595ae4 /meta/recipes-extended/at/at-3.1.10.2
parentff9f1021c854b9752dd962595c113253475b8e65 (diff)
downloadopenembedded-core-e384d62afaa17f8cd2124cb0785b18130c690e64.tar.gz
openembedded-core-e384d62afaa17f8cd2124cb0785b18130c690e64.tar.bz2
openembedded-core-e384d62afaa17f8cd2124cb0785b18130c690e64.tar.xz
openembedded-core-e384d62afaa17f8cd2124cb0785b18130c690e64.zip
at: remove GPLv3 version
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Diffstat (limited to 'meta/recipes-extended/at/at-3.1.10.2')
-rw-r--r--meta/recipes-extended/at/at-3.1.10.2/configure.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/recipes-extended/at/at-3.1.10.2/configure.patch b/meta/recipes-extended/at/at-3.1.10.2/configure.patch
deleted file mode 100644
index f6720111d..000000000
--- a/meta/recipes-extended/at/at-3.1.10.2/configure.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-# 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);],