diff options
author | Cristiana Voicu <cristiana.voicu@intel.com> | 2013-10-24 11:01:48 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-30 13:39:02 +0000 |
commit | ff1707449d851a365e686e6d2cbe822631001147 (patch) | |
tree | ea4d10e0513bed0ba0fe8eae2e1e4011d404c759 /meta/recipes-extended/at/files | |
parent | f0ec7f81c1951211f049c342fd6bd1cad424564a (diff) | |
download | openembedded-core-ff1707449d851a365e686e6d2cbe822631001147.tar.gz openembedded-core-ff1707449d851a365e686e6d2cbe822631001147.tar.bz2 openembedded-core-ff1707449d851a365e686e6d2cbe822631001147.zip |
at: upgrade to 3.1.14
Removed 2 patches because they were merged upstream
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/at/files')
-rw-r--r-- | meta/recipes-extended/at/files/configure.patch | 29 | ||||
-rw-r--r-- | meta/recipes-extended/at/files/use-ldflags.patch | 24 |
2 files changed, 0 insertions, 53 deletions
diff --git a/meta/recipes-extended/at/files/configure.patch b/meta/recipes-extended/at/files/configure.patch deleted file mode 100644 index 14310e3354..0000000000 --- a/meta/recipes-extended/at/files/configure.patch +++ /dev/null @@ -1,29 +0,0 @@ - -Fix cross-compilation issues in configure.ac -Derived from an OE patch for at-3.1.8 - -Upstream-Status: Pending - -Signed-off-by: Scott Garman <scott.a.garman@intel.com> - -Index: at-3.1.12/configure.ac -=================================================================== ---- at-3.1.12.orig/configure.ac -+++ at-3.1.12/configure.ac -@@ -38,12 +38,11 @@ case "$host" in - 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);], diff --git a/meta/recipes-extended/at/files/use-ldflags.patch b/meta/recipes-extended/at/files/use-ldflags.patch deleted file mode 100644 index 4c698003d0..0000000000 --- a/meta/recipes-extended/at/files/use-ldflags.patch +++ /dev/null @@ -1,24 +0,0 @@ -Upstream-Status: Pending - -Ensure use of $LDFLAGS during build -Derived from an OE patch for at-3.1.8 - -Signed-off-by: Scott Garman <scott.a.garman@intel.com> ---- at-3.1.12.orig/Makefile.in 2009-11-23 07:11:52.000000000 -0800 -+++ at-3.1.12/Makefile.in 2010-07-20 16:28:04.000000000 -0700 -@@ -65,13 +65,13 @@ - all: at atd atrun - - at: $(ATOBJECTS) -- $(CC) $(CFLAGS) -o at $(ATOBJECTS) $(LIBS) $(LEXLIB) -+ $(CC) $(CFLAGS) -o at $(ATOBJECTS) $(LIBS) $(LEXLIB) $(LDFLAGS) - rm -f $(CLONES) - $(LN_S) -f at atq - $(LN_S) -f at atrm - - atd: $(RUNOBJECTS) -- $(CC) $(CFLAGS) -o atd $(RUNOBJECTS) $(LIBS) $(PAMLIB) -+ $(CC) $(CFLAGS) -o atd $(RUNOBJECTS) $(LIBS) $(PAMLIB) $(LDFLAGS) - - y.tab.c y.tab.h: parsetime.y - $(YACC) -d parsetime.y |