summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/make
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/make')
-rw-r--r--meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch43
-rw-r--r--meta/recipes-devtools/make/make-3.81/makeinfo.patch22
-rw-r--r--meta/recipes-devtools/make/make.inc10
-rw-r--r--meta/recipes-devtools/make/make_3.81.bb15
-rw-r--r--meta/recipes-devtools/make/make_4.0.bb12
5 files changed, 102 insertions, 0 deletions
diff --git a/meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch b/meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch
new file mode 100644
index 0000000000..9b2e96431d
--- /dev/null
+++ b/meta/recipes-devtools/make/make-3.81/make_fix_for_automake-1.12.patch
@@ -0,0 +1,43 @@
1Upstream-Status: Pending
2
3automake 1.12 has depricated automatic de-ANSI-fication support
4
5this patch avoids these kinds of errors:
6
7| configure.in:48: error: automatic de-ANSI-fication support has been removed
8...
9| Makefile.am:19: error: automatic de-ANSI-fication support has been removed
10| autoreconf: automake failed with exit status: 1
11| ERROR: autoreconf execution failed.
12
13
14Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
152012/05/04
16
17Index: make-3.81/configure.in
18===================================================================
19--- make-3.81.orig/configure.in
20+++ make-3.81/configure.in
21@@ -44,9 +44,6 @@ AC_AIX
22 AC_ISC_POSIX
23 AC_MINIX
24
25-# Needed for ansi2knr
26-AM_C_PROTOTYPES
27-
28 # Enable gettext, in "external" mode.
29
30 AM_GNU_GETTEXT_VERSION(0.14.1)
31Index: make-3.81/Makefile.am
32===================================================================
33--- make-3.81.orig/Makefile.am
34+++ make-3.81/Makefile.am
35@@ -16,7 +16,7 @@
36 # GNU Make; see the file COPYING. If not, write to the Free Software
37 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
38
39-AUTOMAKE_OPTIONS = 1.8 dist-bzip2 check-news ansi2knr
40+AUTOMAKE_OPTIONS = 1.8 dist-bzip2 check-news
41 ACLOCAL_AMFLAGS = -I config
42
43 MAKE_HOST = @MAKE_HOST@
diff --git a/meta/recipes-devtools/make/make-3.81/makeinfo.patch b/meta/recipes-devtools/make/make-3.81/makeinfo.patch
new file mode 100644
index 0000000000..5dd7604675
--- /dev/null
+++ b/meta/recipes-devtools/make/make-3.81/makeinfo.patch
@@ -0,0 +1,22 @@
1Allow docs to build with makeinfo 5.X, fixing the error:
2
3doc/make.texi:8165: @itemx must follow @item
4
5Upstream-Status: Backport
6
7RP
82014/03/29
9
10Index: make-3.81/doc/make.texi
11===================================================================
12--- make-3.81.orig/doc/make.texi 2006-04-01 06:36:40.000000000 +0000
13+++ make-3.81/doc/make.texi 2014-03-29 09:39:51.007727012 +0000
14@@ -8162,7 +8162,7 @@
15 rarely need to specify this option since @samp{make} does it for you;
16 see @ref{-w Option, ,The @samp{--print-directory} Option}.)
17
18-@itemx --no-print-directory
19+@item --no-print-directory
20 @cindex @code{--no-print-directory}
21 Disable printing of the working directory under @code{-w}.
22 This option is useful when @code{-w} is turned on automatically,
diff --git a/meta/recipes-devtools/make/make.inc b/meta/recipes-devtools/make/make.inc
new file mode 100644
index 0000000000..4036345089
--- /dev/null
+++ b/meta/recipes-devtools/make/make.inc
@@ -0,0 +1,10 @@
1SUMMARY = "GNU tool that controls the build process"
2DESCRIPTION = "Make is a tool which controls the generation of executables and other non-source files of a \
3program from the program's source files. Make gets its knowledge of how to build your program from a file \
4called the makefile, which lists each of the non-source files and how to compute it from other files."
5HOMEPAGE = "http://www.gnu.org/software/make/"
6SECTION = "devel"
7
8SRC_URI = "${GNU_MIRROR}/make/make-${PV}.tar.bz2"
9
10inherit autotools gettext pkgconfig
diff --git a/meta/recipes-devtools/make/make_3.81.bb b/meta/recipes-devtools/make/make_3.81.bb
new file mode 100644
index 0000000000..b8a79b0eb2
--- /dev/null
+++ b/meta/recipes-devtools/make/make_3.81.bb
@@ -0,0 +1,15 @@
1PR = "r1"
2
3LICENSE = "GPLv2 & LGPLv2"
4LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f \
5 file://tests/COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
6 file://glob/COPYING.LIB;md5=4a770b67e6be0f60da244beb2de0fce4"
7
8require make.inc
9
10SRC_URI += "file://make_fix_for_automake-1.12.patch"
11SRC_URI += "file://makeinfo.patch"
12
13SRC_URI[md5sum] = "354853e0b2da90c527e35aabb8d6f1e6"
14SRC_URI[sha256sum] = "f3e69023771e23908f5d5592954d8271d3d6af09693cecfd29cee6fde8550dc8"
15
diff --git a/meta/recipes-devtools/make/make_4.0.bb b/meta/recipes-devtools/make/make_4.0.bb
new file mode 100644
index 0000000000..38d328c8a5
--- /dev/null
+++ b/meta/recipes-devtools/make/make_4.0.bb
@@ -0,0 +1,12 @@
1LICENSE = "GPLv3 & LGPLv2"
2LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
3 file://tests/COPYING;md5=d32239bcb673463ab874e80d47fae504 \
4 file://glob/COPYING.LIB;md5=4a770b67e6be0f60da244beb2de0fce4"
5require make.inc
6
7EXTRA_OECONF += "--without-guile"
8
9SRC_URI[md5sum] = "571d470a7647b455e3af3f92d79f1c18"
10SRC_URI[sha256sum] = "e60686c7afede62cc8c86ad3012cf081ea4887daf9d223ce7115703b2bb2dbdb"
11
12BBCLASSEXTEND = "native nativesdk"