public inbox for crossgcc@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 2 of 2] If GNU make 3.81 is not found then build it as a companion tool
  2014-02-20 18:30 [PATCH 0 of 2] Make companion tools not experimental and build GNU make 3.81 if needed mingw.android
  2014-02-20 18:30 ` [PATCH 1 of 2] Companion tools are no longer experimental mingw.android
@ 2014-02-20 18:30 ` mingw.android
  2014-02-20 19:37   ` Yann E. MORIN
  1 sibling, 1 reply; 5+ messages in thread
From: mingw.android @ 2014-02-20 18:30 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

# HG changeset patch
# User Ray Donnelly <mingw.android@gmail.com>
# Date 1392920588 0
#      Thu Feb 20 18:23:08 2014 +0000
# Node ID 8b8bf6998f3d239f6c74d0f91782164af9f3c741
# Parent  3e204a5cf9648db53a6a2a6070d301ec705f6dd4
If GNU make 3.81 is not found then build it as a companion tool.

Signed-off-by: Ray Donnelly <mingw.android@gmail.com>

diff -r 3e204a5cf964 -r 8b8bf6998f3d config/companion_tools.in
--- a/config/companion_tools.in	Thu Feb 20 18:22:50 2014 +0000
+++ b/config/companion_tools.in	Thu Feb 20 18:23:08 2014 +0000
@@ -2,6 +2,13 @@
 
 menu "Companion tools"
 
+config COMP_TOOLS_make_3_81_NEEDED
+    bool
+    depends on ! CONFIGURE_has_make381
+    default y
+    select COMP_TOOLS
+    select COMP_TOOLS_make
+
 comment "READ HELP before you say 'Y' below !!!"
 config COMP_TOOLS
     bool
diff -r 3e204a5cf964 -r 8b8bf6998f3d configure.ac
--- a/configure.ac	Thu Feb 20 18:22:50 2014 +0000
+++ b/configure.ac	Thu Feb 20 18:23:08 2014 +0000
@@ -220,6 +220,15 @@
 AC_SUBST([MAKE], [$ac_cv_path_MAKE])
 AC_PROG_MAKE_SET
 
+# Check for GNU make 3.81 exactly, otherwise
+# it will be built as a companion tool.
+AS_IF(
+      [test "$MAKE_ver" = "GNU Make 3.81"],
+      [make381="y"],
+      [make381=]
+     )
+ACX_SET_KCONFIG_OPTION([make381])
+
 #----------------------------------------
 # Check for libtool >= 1.5.26
 AC_CACHE_VAL([ac_cv_path_LIBTOOL],

--
For unsubscribe information see http://sourceware.org/lists.html#faq

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1 of 2] Companion tools are no longer experimental
  2014-02-20 18:30 [PATCH 0 of 2] Make companion tools not experimental and build GNU make 3.81 if needed mingw.android
@ 2014-02-20 18:30 ` mingw.android
  2014-02-20 19:37   ` Yann E. MORIN
  2014-02-20 18:30 ` [PATCH 2 of 2] If GNU make 3.81 is not found then build it as a companion tool mingw.android
  1 sibling, 1 reply; 5+ messages in thread
From: mingw.android @ 2014-02-20 18:30 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

# HG changeset patch
# User Ray Donnelly <mingw.android@gmail.com>
# Date 1392920570 0
#      Thu Feb 20 18:22:50 2014 +0000
# Node ID 3e204a5cf9648db53a6a2a6070d301ec705f6dd4
# Parent  a8cb9039fadee8d34669d83824c8eb1f56805691
Companion tools are no longer experimental

Signed-off-by: Ray Donnelly <mingw.android@gmail.com>

diff -r a8cb9039fade -r 3e204a5cf964 config/companion_tools.in
--- a/config/companion_tools.in	Tue Feb 11 21:34:48 2014 +0100
+++ b/config/companion_tools.in	Thu Feb 20 18:22:50 2014 +0000
@@ -1,7 +1,5 @@
 # Companion tools config options
 
-if EXPERIMENTAL
-
 menu "Companion tools"
 
 comment "READ HELP before you say 'Y' below !!!"
@@ -44,5 +42,3 @@
 endif
 
 endmenu
-
-endif

--
For unsubscribe information see http://sourceware.org/lists.html#faq

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 0 of 2] Make companion tools not experimental and build GNU make 3.81 if needed
@ 2014-02-20 18:30 mingw.android
  2014-02-20 18:30 ` [PATCH 1 of 2] Companion tools are no longer experimental mingw.android
  2014-02-20 18:30 ` [PATCH 2 of 2] If GNU make 3.81 is not found then build it as a companion tool mingw.android
  0 siblings, 2 replies; 5+ messages in thread
From: mingw.android @ 2014-02-20 18:30 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

Yann, list,

I hope these patches meet with your approval.

Ray.

--
For unsubscribe information see http://sourceware.org/lists.html#faq

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Companion tools are no longer experimental
  2014-02-20 18:30 ` [PATCH 1 of 2] Companion tools are no longer experimental mingw.android
@ 2014-02-20 19:37   ` Yann E. MORIN
  0 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2014-02-20 19:37 UTC (permalink / raw)
  To: Ray Donnelly; +Cc: crossgcc

Ray, All,

Your patch:
    Companion tools are no longer experimental

has been applied as: #ccef9a13c09b
    http://crosstool-ng.org/hg/crosstool-ng/rev/ccef9a13c09b

Thank you!

Regards,
Yann E. MORIN.



--
For unsubscribe information see http://sourceware.org/lists.html#faq

^ permalink raw reply	[flat|nested] 5+ messages in thread

* If GNU make 3.81 is not found then build it as a companion tool.
  2014-02-20 18:30 ` [PATCH 2 of 2] If GNU make 3.81 is not found then build it as a companion tool mingw.android
@ 2014-02-20 19:37   ` Yann E. MORIN
  0 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2014-02-20 19:37 UTC (permalink / raw)
  To: Ray Donnelly, Yann E. MORIN; +Cc: crossgcc

Ray, All,

Your patch:
    If GNU make 3.81 is not found then build it as a companion tool.

has been applied as: #9321d9d7af9b
    http://crosstool-ng.org/hg/crosstool-ng/rev/9321d9d7af9b

Thank you!

Regards,
Yann E. MORIN.



--
For unsubscribe information see http://sourceware.org/lists.html#faq

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-02-20 19:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-20 18:30 [PATCH 0 of 2] Make companion tools not experimental and build GNU make 3.81 if needed mingw.android
2014-02-20 18:30 ` [PATCH 1 of 2] Companion tools are no longer experimental mingw.android
2014-02-20 19:37   ` Yann E. MORIN
2014-02-20 18:30 ` [PATCH 2 of 2] If GNU make 3.81 is not found then build it as a companion tool mingw.android
2014-02-20 19:37   ` Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).