summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/at
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-10-24 11:01:48 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-10-30 13:39:02 +0000
commitff1707449d851a365e686e6d2cbe822631001147 (patch)
treeea4d10e0513bed0ba0fe8eae2e1e4011d404c759 /meta/recipes-extended/at
parentf0ec7f81c1951211f049c342fd6bd1cad424564a (diff)
downloadopenembedded-core-contrib-ff1707449d851a365e686e6d2cbe822631001147.tar.gz
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')
-rw-r--r--meta/recipes-extended/at/at_3.1.14.bb (renamed from meta/recipes-extended/at/at_3.1.13.bb)7
-rw-r--r--meta/recipes-extended/at/files/configure.patch29
-rw-r--r--meta/recipes-extended/at/files/use-ldflags.patch24
3 files changed, 2 insertions, 58 deletions
diff --git a/meta/recipes-extended/at/at_3.1.13.bb b/meta/recipes-extended/at/at_3.1.14.bb
index 6fa13b91fb..f80b620e68 100644
--- a/meta/recipes-extended/at/at_3.1.13.bb
+++ b/meta/recipes-extended/at/at_3.1.14.bb
@@ -16,11 +16,8 @@ PAM_DEPS = "libpam libpam-runtime pam-plugin-env pam-plugin-limits"
RCONFLICTS_${PN} = "atd"
RREPLACES_${PN} = "atd"
-PR = "r5"
SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \
- file://configure.patch \
- file://use-ldflags.patch \
file://fix_parallel_build_error.patch \
file://posixtm.c \
file://posixtm.h \
@@ -31,8 +28,8 @@ SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \
PAM_SRC_URI = "file://pam.conf.patch \
file://configure-add-enable-pam.patch"
-SRC_URI[md5sum] = "1da61af6c29e323abaaf13ee1a8dad79"
-SRC_URI[sha256sum] = "3a8b90868d615d21a92f4986ea9a823886329af8fae8dd7ab4eed9b273bca072"
+SRC_URI[md5sum] = "d41cfd79033b6e49a8838add59a42ac6"
+SRC_URI[sha256sum] = "cd092bf05d29c25b286f55a960ce8b8c3c5beb571d86ed8eb1dfb3b61291b3ae"
EXTRA_OECONF += "ac_cv_path_SENDMAIL=/bin/true \
--with-daemon_username=root \
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