summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/dpkg/dpkg/autofoo.patch
diff options
context:
space:
mode:
authorConstantin Musca <constantinx.musca@intel.com>2012-08-28 17:02:40 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-02 05:52:07 -0700
commit5b1fbbebb987a78c7e3261ed53ebda5597dc0b42 (patch)
tree786ca0911522a4fac21306a50d8d9d7a71a970af /meta/recipes-devtools/dpkg/dpkg/autofoo.patch
parent1c64c6b3002b4a01e590263c730e22c89d869bb7 (diff)
downloadpoky-5b1fbbebb987a78c7e3261ed53ebda5597dc0b42.tar.gz
dpkg: upgrade to 1.16.8
autofoo.patch: removed - the patch is not used check_version: adapted to the new version - adapt the linux-wrs kernel version, which has character '_' - remove the first-char-digit-check (as the 1.15.8.5 version does) dpkg-deb-avoid-fflush.patch: removed - the patch is included in the new version fix-timestamps.patch: added - the lutimes function doesn't work properly for all systems ignore_extra_fields.patch: adapted to the new version nochroot.patch: removed - the patch is not used noman.patch: adapted to the new version noupdalt.patch: removed - the patch is not used perllibdir.patch: removed - in the new version PERL_LIBDIR will be set only if empty preinst.patch: adapted to new version removed-tar-no-timestamp.patch: added - the busybox-1.19.4 tar utility doesn't support --warning=no-timestamp (From OE-Core rev: 02e8b5c1fd68fa18ee81ba2920cd48fea8a1ef5e) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/dpkg/dpkg/autofoo.patch')
-rw-r--r--meta/recipes-devtools/dpkg/dpkg/autofoo.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg/autofoo.patch b/meta/recipes-devtools/dpkg/dpkg/autofoo.patch
deleted file mode 100644
index 2f1edcec53..0000000000
--- a/meta/recipes-devtools/dpkg/dpkg/autofoo.patch
+++ /dev/null
@@ -1,50 +0,0 @@
1
2#
3# Patch managed by http://www.holgerschurig.de/patcher.html
4#
5
6Upstream-Status: Inappropriate [configuration]
7
8--- dpkg-1.10.23/configure.in~autofoo
9+++ dpkg-1.10.23/configure.in
10@@ -227,21 +227,36 @@
11 # OpenBSD passes AC_TRY_COMPILE for va_copy even though
12 # it doesn't seem to exist, which is odd. We need to use
13 # AC_TRY_RUN.
14+#
15+# If crosscompiling, use AC_TRY_COMPILE. -CL
16 AC_TRY_RUN([
17 #include <stdarg.h>
18 main(){
19 va_list v1,v2;
20 va_copy(v1, v2);
21 exit(0);}
22-], [AC_MSG_RESULT(yes)
23-AC_DEFINE(HAVE_VA_COPY,,[Whether the va_copy macro exists])],[AC_MSG_RESULT(no)
24-AC_MSG_CHECKING([for va_list assignment copy])
25+], [dpkg_cv_va_copy=yes], [dpkg_cv_va_copy=no],
26 AC_TRY_COMPILE([
27 #include <stdarg.h>
28+main(){
29+va_list v1,v2;
30+va_copy(v1, v2);
31+exit(0);}
32+], [dpkg_cv_va_copy=yes], [dpkg_vc_va_copy=no]))
33+
34+if test "$dpkg_cv_va_copy" = "yes"; then
35+ AC_MSG_RESULT(yes)
36+ AC_DEFINE(HAVE_VA_COPY,,[Whether the va_copy macro exists])
37+else
38+ AC_MSG_RESULT(no)
39+ AC_MSG_CHECKING([for va_list assignment copy])
40+ AC_TRY_COMPILE([
41+#include <stdarg.h>
42 ],[
43 va_list v1,v2;
44 v1 = v2;
45-], AC_MSG_RESULT(yes),AC_MSG_ERROR(no))])
46+], AC_MSG_RESULT(yes), AC_MSG_ERROR(no))
47+fi
48
49 DPKG_C_GCC_ATTRIBUTE([,,],supported,[int x],[,,],ATTRIB,[Define if function attributes a la GCC 2.5 and higher are available.],
50 DPKG_C_GCC_ATTRIBUTE(noreturn,noreturn,[int x],noreturn,NORETURN,[Define if nonreturning functions a la GCC 2.5 and higher are available.])