mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
recipes: delete obsolete patches
Deleted bunch of patches which are not used anymore by any recipe. Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
cd653249c2
commit
4b4a62ec07
-47
@@ -1,47 +0,0 @@
|
||||
From 40971911d653bf53de295d7462c643e4073916b9 Mon Sep 17 00:00:00 2001
|
||||
From: Joe MacDonald <joe@deserted.net>
|
||||
Date: Fri, 1 Nov 2013 12:47:18 -0400
|
||||
Subject: [PATCH] systemd: allow --with-systemd to take a path arg
|
||||
|
||||
If building for a cross-compile environment with systemd it is convenient
|
||||
to be able to specify a systemd path for the target that may not be the
|
||||
same as that on the host.
|
||||
|
||||
Upstream-status: Submitted [http://www.spinics.net/lists/autofs/msg00740.html]
|
||||
|
||||
Signed-off-by: Joe MacDonald <joe@deserted.net>
|
||||
---
|
||||
aclocal.m4 | 10 ++++++++--
|
||||
1 file changed, 8 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/aclocal.m4 b/aclocal.m4
|
||||
index 3e6f223..105e3e9 100644
|
||||
--- a/aclocal.m4
|
||||
+++ b/aclocal.m4
|
||||
@@ -229,8 +229,10 @@ dnl Check the location of the systemd unit files directory
|
||||
dnl --------------------------------------------------------------------------
|
||||
AC_DEFUN([AF_WITH_SYSTEMD],
|
||||
[AC_ARG_WITH(systemd,
|
||||
-[ --with-systemd install systemd unit file if systemd unit directory
|
||||
- is found on system],
|
||||
+[ --with-systemd@<:@=systemddir@:>@ install systemd unit file. If 'yes'
|
||||
+ probe the system for unit directory.
|
||||
+ If a path is specified, assume that
|
||||
+ is a valid install path.],
|
||||
[if test "$withval" = yes; then
|
||||
if test -z "$systemddir"; then
|
||||
AC_MSG_CHECKING([location of the systemd unit files directory])
|
||||
@@ -247,6 +249,10 @@ AC_DEFUN([AF_WITH_SYSTEMD],
|
||||
else
|
||||
AC_MSG_RESULT(not found)
|
||||
fi
|
||||
+else
|
||||
+ if test "$withval" != no; then
|
||||
+ systemddir=$withval
|
||||
+ fi
|
||||
fi])
|
||||
])
|
||||
|
||||
--
|
||||
1.7.10.4
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
Index: autofs-5.0.7/Makefile.rules
|
||||
===================================================================
|
||||
--- autofs-5.0.7.orig/Makefile.rules 2012-07-24 23:05:26.000000000 -0700
|
||||
+++ autofs-5.0.7/Makefile.rules 2012-10-26 09:23:40.270204270 -0700
|
||||
@@ -34,14 +34,14 @@
|
||||
else
|
||||
CFLAGS ?= -O2 -Wall
|
||||
LDFLAGS = -s
|
||||
-STRIP = strip --strip-debug
|
||||
+STRIP = ${TARGET_PREFIX}strip --strip-debug
|
||||
endif
|
||||
endif
|
||||
|
||||
-CC = gcc
|
||||
-CXX = g++
|
||||
+CC ?= ${TARGET_PREFIX}gcc
|
||||
+CXX ?= ${TARGET_PREFIX}g++
|
||||
CXXFLAGS = $(CFLAGS)
|
||||
-LD = ld
|
||||
+LD ?= ${TARGET_PREFIX}ld
|
||||
SOLDFLAGS = -shared
|
||||
|
||||
CFLAGS += -D_REENTRANT -D_FILE_OFFSET_BITS=64
|
||||
@@ -1,12 +0,0 @@
|
||||
--- autofs-4.1.4/samples/rc.autofs.in~ 2005-04-11 06:30:54.000000000 -0500
|
||||
+++ autofs-4.1.4/samples/rc.autofs.in 2007-04-07 13:18:44.000000000 -0500
|
||||
@@ -43,6 +43,9 @@
|
||||
system=debian
|
||||
elif [ -f /etc/redhat-release ]; then
|
||||
system=redhat
|
||||
+elif [ -f /etc/issue ] && grep -q "^SlugOS\|Yocto" /etc/issue ; then
|
||||
+ # SlugOS and Yocto behave like Debian, at least for autofs purposes.
|
||||
+ system=debian
|
||||
else
|
||||
echo "$0: Unknown system, please port and contact autofs@linux.kernel.org" 1>&2
|
||||
exit 1
|
||||
@@ -1,31 +0,0 @@
|
||||
From faa212a4e0aaf442ff58fca50770a8fadc1038e3 Mon Sep 17 00:00:00 2001
|
||||
Message-Id: <faa212a4e0aaf442ff58fca50770a8fadc1038e3.1382041123.git.Jim.Somerville@windriver.com>
|
||||
From: Jim Somerville <Jim.Somerville@windriver.com>
|
||||
Date: Thu, 17 Oct 2013 16:17:48 -0400
|
||||
Subject: [PATCH 1/1] Add default entry for cross compile
|
||||
|
||||
Signed-off-by: Jim Somerville <Jim.Somerville@windriver.com>
|
||||
---
|
||||
acinclude/krb5.m4 | 6 +++++-
|
||||
1 files changed, 5 insertions(+), 1 deletions(-)
|
||||
|
||||
diff --git a/acinclude/krb5.m4 b/acinclude/krb5.m4
|
||||
index 5d9ac36..7a072a2 100644
|
||||
--- a/acinclude/krb5.m4
|
||||
+++ b/acinclude/krb5.m4
|
||||
@@ -82,7 +82,11 @@ main(void)
|
||||
|
||||
return 0;
|
||||
}
|
||||
-]])], [ squid_cv_broken_heimdal_krb5_h=yes ], [ squid_cv_broken_heimdal_krb5_h=no ])
|
||||
+]])], [ squid_cv_broken_heimdal_krb5_h=yes ], [ squid_cv_broken_heimdal_krb5_h=no ],
|
||||
+[
|
||||
+ dnl Can't test in cross compiled env - so assume good
|
||||
+ squid_cv_broken_heimdal_krb5_h=no
|
||||
+])
|
||||
],
|
||||
[
|
||||
dnl Can't test in cross compiled env - so assume good
|
||||
--
|
||||
1.7.4.1
|
||||
|
||||
@@ -1,38 +0,0 @@
|
||||
Upstream-Status: Inappropriate [packaging]
|
||||
|
||||
|
||||
Index: curl-7.20.0/libcurl.pc.in
|
||||
===================================================================
|
||||
--- curl-7.20.0.orig/libcurl.pc.in 2009-11-17 18:11:07.000000000 +0000
|
||||
+++ curl-7.20.0/libcurl.pc.in 2010-03-25 12:13:26.814051066 +0000
|
||||
@@ -35,6 +35,7 @@
|
||||
URL: http://curl.haxx.se/
|
||||
Description: Library to transfer files with ftp, http, etc.
|
||||
Version: @CURLVERSION@
|
||||
-Libs: -L${libdir} -lcurl @LIBS@
|
||||
-Libs.private: @LIBCURL_LIBS@ @LIBS@
|
||||
+Requires.private: @GNUTLS_REQUIRED@
|
||||
+Libs: -L${libdir} -lcurl
|
||||
+Libs.private: -ldl -lz
|
||||
Cflags: -I${includedir}
|
||||
Index: curl-7.20.0/configure.ac
|
||||
===================================================================
|
||||
--- curl-7.20.0.orig/configure.ac 2010-02-04 21:41:46.000000000 +0000
|
||||
+++ curl-7.20.0/configure.ac 2010-03-25 12:12:18.673129001 +0000
|
||||
@@ -1668,6 +1668,7 @@
|
||||
AC_SUBST(USE_GNUTLS, [1])
|
||||
GNUTLS_ENABLED=1
|
||||
USE_GNUTLS="yes"
|
||||
+ GNUTLS_REQUIRED="gnutls"
|
||||
curl_ssl_msg="enabled (GnuTLS)"
|
||||
],
|
||||
[
|
||||
@@ -1696,6 +1697,8 @@
|
||||
|
||||
fi dnl OPENSSL != 1
|
||||
|
||||
+AC_SUBST(GNUTLS_REQUIRED)
|
||||
+
|
||||
dnl ----------------------------------------------------
|
||||
dnl NSS. Only check if GnuTLS and OpenSSL are not enabled
|
||||
dnl ----------------------------------------------------
|
||||
-38
@@ -1,38 +0,0 @@
|
||||
From feccf89f08a455460668cf286151662e4c1557b3 Mon Sep 17 00:00:00 2001
|
||||
From: Li xin <lixin.fnst@cn.fujitsu.com>
|
||||
Date: Thu, 20 Aug 2015 15:32:30 +0900
|
||||
Subject: [PATCH] Makefile.in: don't compile documentation
|
||||
|
||||
The documentation file is not suitable for cross-compile,
|
||||
Errors will occur:
|
||||
| /bin/sh: ../../user/v9/drbdsetup: /lib/ld-linux-x86-64.so.2: bad ELF interpreter: No such file or directory
|
||||
| ../../user/v9/drbdsetup xml-help disk-options > drbdsetup_xml-help_disk-options.xml
|
||||
| /bin/sh: ../../user/v9/drbdsetup: /lib/ld-linux-x86-64.so.2: bad ELF interpreter: No such file or directory
|
||||
| /bin/sh: ../../user/v9/drbdsetup: /lib/ld-linux-x86-64.so.2: bad ELF interpreter: No such file or directory
|
||||
| make[1]: *** [drbdsetup_xml-help_new-resource.xml] Error 126
|
||||
|
||||
so we do not compile it.
|
||||
|
||||
Upstream-Status: pending
|
||||
|
||||
Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
|
||||
---
|
||||
Makefile.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile.in b/Makefile.in
|
||||
index 5365a2c..d5967d8 100644
|
||||
--- a/Makefile.in
|
||||
+++ b/Makefile.in
|
||||
@@ -45,7 +45,7 @@ WITH_84_SUPPORT = @WITH_84_SUPPORT@
|
||||
# and not in e.g. dash. I'm too lazy to fix it to be compatible.
|
||||
SHELL=/bin/bash
|
||||
|
||||
-SUBDIRS = user/shared user/v9 user/v84 user/v83 scripts documentation/v83 documentation/v84 documentation/v9
|
||||
+SUBDIRS = user/shared user/v9 user/v84 user/v83 scripts
|
||||
|
||||
REL_VERSION := $(shell $(SED) -ne '/^AC_INIT/{s/^[^,]*, *\([^,]*\) *,.*/\1/;p;q}' configure.ac)
|
||||
ifdef FORCE
|
||||
--
|
||||
1.8.4.2
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
[PATCH] Do not set CC_FOR_BUILD flags
|
||||
|
||||
Upstream-status: Pending
|
||||
|
||||
AC_WIRESHARK_COMPILER_FLAGS_CHECK() is checking which options CC is supported,
|
||||
and put the supported options into CFLAGS, but it should not put them into
|
||||
CFLAGS_FOR_BUILD. since CC and BUILD_CC can be different, CFLAGS_FOR_BUILD is
|
||||
used by BUILD_CC
|
||||
|
||||
BUILD_CC is used to generated host tools, do not use the gcc's optimised options,
|
||||
do not effect the running of host tools. so do not set CC_FOR_BUILD flags.
|
||||
|
||||
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
|
||||
---
|
||||
acinclude.m4 | 8 --------
|
||||
1 file changed, 8 deletions(-)
|
||||
|
||||
diff --git a/acinclude.m4 b/acinclude.m4
|
||||
index 136fc27..8d3d360 100644
|
||||
--- a/acinclude.m4
|
||||
+++ b/acinclude.m4
|
||||
@@ -1755,10 +1755,6 @@ if test "x$ac_supports_gcc_flags" = "xyes" ; then
|
||||
# just the new option.
|
||||
#
|
||||
CFLAGS="$CFLAGS_saved $GCC_OPTION"
|
||||
- #
|
||||
- # Add it to the flags we use when building build tools.
|
||||
- #
|
||||
- CFLAGS_FOR_BUILD="$CFLAGS_FOR_BUILD $GCC_OPTION"
|
||||
],
|
||||
[
|
||||
AC_MSG_RESULT(yes)
|
||||
@@ -1771,10 +1767,6 @@ if test "x$ac_supports_gcc_flags" = "xyes" ; then
|
||||
# just the new option.
|
||||
#
|
||||
CFLAGS="$CFLAGS_saved $GCC_OPTION"
|
||||
- #
|
||||
- # Add it to the flags we use when building build tools.
|
||||
- #
|
||||
- CFLAGS_FOR_BUILD="$CFLAGS_FOR_BUILD $GCC_OPTION"
|
||||
fi
|
||||
],
|
||||
[
|
||||
--
|
||||
1.9.1
|
||||
|
||||
Reference in New Issue
Block a user