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:09 +0000 |
commit | 7330735ae29c4570a73f723ba437a2c422c04921 (patch) | |
tree | 3c73aed03506746e78ee08ed0cfc3c03f30ef636 /meta | |
parent | 44e2ea50218a8c79fb3bec02d9c0bcd25f874bc0 (diff) | |
download | poky-7330735ae29c4570a73f723ba437a2c422c04921.tar.gz |
at: upgrade to 3.1.14
Removed 2 patches because they were merged upstream
(From OE-Core rev: ff1707449d851a365e686e6d2cbe822631001147)
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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.patch | 29 | ||||
-rw-r--r-- | meta/recipes-extended/at/files/use-ldflags.patch | 24 |
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" | |||
16 | 16 | ||
17 | RCONFLICTS_${PN} = "atd" | 17 | RCONFLICTS_${PN} = "atd" |
18 | RREPLACES_${PN} = "atd" | 18 | RREPLACES_${PN} = "atd" |
19 | PR = "r5" | ||
20 | 19 | ||
21 | SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \ | 20 | SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \ |
22 | file://configure.patch \ | ||
23 | file://use-ldflags.patch \ | ||
24 | file://fix_parallel_build_error.patch \ | 21 | file://fix_parallel_build_error.patch \ |
25 | file://posixtm.c \ | 22 | file://posixtm.c \ |
26 | file://posixtm.h \ | 23 | file://posixtm.h \ |
@@ -31,8 +28,8 @@ SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \ | |||
31 | PAM_SRC_URI = "file://pam.conf.patch \ | 28 | PAM_SRC_URI = "file://pam.conf.patch \ |
32 | file://configure-add-enable-pam.patch" | 29 | file://configure-add-enable-pam.patch" |
33 | 30 | ||
34 | SRC_URI[md5sum] = "1da61af6c29e323abaaf13ee1a8dad79" | 31 | SRC_URI[md5sum] = "d41cfd79033b6e49a8838add59a42ac6" |
35 | SRC_URI[sha256sum] = "3a8b90868d615d21a92f4986ea9a823886329af8fae8dd7ab4eed9b273bca072" | 32 | SRC_URI[sha256sum] = "cd092bf05d29c25b286f55a960ce8b8c3c5beb571d86ed8eb1dfb3b61291b3ae" |
36 | 33 | ||
37 | EXTRA_OECONF += "ac_cv_path_SENDMAIL=/bin/true \ | 34 | EXTRA_OECONF += "ac_cv_path_SENDMAIL=/bin/true \ |
38 | --with-daemon_username=root \ | 35 | --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 @@ | |||
1 | |||
2 | Fix cross-compilation issues in configure.ac | ||
3 | Derived from an OE patch for at-3.1.8 | ||
4 | |||
5 | Upstream-Status: Pending | ||
6 | |||
7 | Signed-off-by: Scott Garman <scott.a.garman@intel.com> | ||
8 | |||
9 | Index: at-3.1.12/configure.ac | ||
10 | =================================================================== | ||
11 | --- at-3.1.12.orig/configure.ac | ||
12 | +++ at-3.1.12/configure.ac | ||
13 | @@ -38,12 +38,11 @@ case "$host" in | ||
14 | AC_MSG_RESULT(no) | ||
15 | ;; | ||
16 | esac | ||
17 | +if [ X"${cross_compiling}" = Xno ]; then | ||
18 | AC_MSG_CHECKING(Trying to compile a trivial ANSI C program) | ||
19 | -AC_TRY_RUN([ main(int ac, char **av) { return 0; } ], | ||
20 | - AC_MSG_RESULT(yes), | ||
21 | - AC_MSG_RESULT(no) | ||
22 | - AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.), | ||
23 | - AC_MSG_ERROR(Could not compile and run even a trivial ANSI C program - check CC.)) | ||
24 | +AC_RUN_IFELSE([AC_LANG_SOURCE([[ main(int ac, char **av) { return 0; } ]])],[AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no) | ||
25 | + 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.)]) | ||
26 | +fi | ||
27 | |||
28 | AC_MSG_CHECKING(__attribute__((noreturn))) | ||
29 | 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 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Ensure use of $LDFLAGS during build | ||
4 | Derived from an OE patch for at-3.1.8 | ||
5 | |||
6 | Signed-off-by: Scott Garman <scott.a.garman@intel.com> | ||
7 | --- at-3.1.12.orig/Makefile.in 2009-11-23 07:11:52.000000000 -0800 | ||
8 | +++ at-3.1.12/Makefile.in 2010-07-20 16:28:04.000000000 -0700 | ||
9 | @@ -65,13 +65,13 @@ | ||
10 | all: at atd atrun | ||
11 | |||
12 | at: $(ATOBJECTS) | ||
13 | - $(CC) $(CFLAGS) -o at $(ATOBJECTS) $(LIBS) $(LEXLIB) | ||
14 | + $(CC) $(CFLAGS) -o at $(ATOBJECTS) $(LIBS) $(LEXLIB) $(LDFLAGS) | ||
15 | rm -f $(CLONES) | ||
16 | $(LN_S) -f at atq | ||
17 | $(LN_S) -f at atrm | ||
18 | |||
19 | atd: $(RUNOBJECTS) | ||
20 | - $(CC) $(CFLAGS) -o atd $(RUNOBJECTS) $(LIBS) $(PAMLIB) | ||
21 | + $(CC) $(CFLAGS) -o atd $(RUNOBJECTS) $(LIBS) $(PAMLIB) $(LDFLAGS) | ||
22 | |||
23 | y.tab.c y.tab.h: parsetime.y | ||
24 | $(YACC) -d parsetime.y | ||