bugzilla-daemon at mindrot.org
2015-Jun-03  23:06 UTC
[Bug 2409] New: Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409
            Bug ID: 2409
           Summary: Outdated GNU config.guess scripts
           Product: Portable OpenSSH
           Version: -current
          Hardware: All
                OS: All
            Status: NEW
          Severity: trivial
          Priority: P5
         Component: Build system
          Assignee: unassigned-bugs at mindrot.org
          Reporter: venture37 at geeklan.co.uk
The version of config.guess shipped with the 6.9 SNAP is out of date 
Latest version (2015-03-04) can be obtained from: 
http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
Bundled version is dated 2012-12-23.
This means that configure fails on ppc64le running Linux for example.
-- 
You are receiving this mail because:
You are watching the assignee of the bug.
bugzilla-daemon at mindrot.org
2015-Jun-04  00:49 UTC
[Bug 2409] Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409
Darren Tucker <dtucker at zip.com.au> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |djm at mindrot.org,
                   |                            |dtucker at zip.com.au
   Attachment #2643|                            |ok?(djm at mindrot.org)
              Flags|                            |
--- Comment #1 from Darren Tucker <dtucker at zip.com.au> ---
Created attachment 2643
  --> https://bugzilla.mindrot.org/attachment.cgi?id=2643&action=edit
Diff for updated config.guess
Here's the net change.  Do we want to do this before or after the
release?
-- 
You are receiving this mail because:
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at mindrot.org
2015-Jun-04  01:37 UTC
[Bug 2409] Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409
--- Comment #2 from Damien Miller <djm at mindrot.org> ---
Comment on attachment 2643
  --> https://bugzilla.mindrot.org/attachment.cgi?id=2643
Diff for updated config.guess
I think the whole thing is too big for now, but maybe we could just
add:
    ppc64le:Linux:*:*)
    echo powerpc64le-unknown-linux-gnu
    exit ;;
    ppcle:Linux:*:*)
    echo powerpcle-unknown-linux-gnu
    exit ;;
which should get the OP going, and do the rest after release
-- 
You are receiving this mail because:
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at mindrot.org
2015-Jun-05  04:45 UTC
[Bug 2409] Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409
Darren Tucker <dtucker at zip.com.au> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Attachment #2646|                            |ok?(djm at mindrot.org)
              Flags|                            |
--- Comment #3 from Darren Tucker <dtucker at zip.com.au> ---
Created attachment 2646
  --> https://bugzilla.mindrot.org/attachment.cgi?id=2646&action=edit
Add Linux powerpc64le and powerpcle entries
OK.  We've added "update config.guess" to our post-release
checklist so
we should keep it more up to date in future.
-- 
You are receiving this mail because:
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at mindrot.org
2015-Jun-05  04:46 UTC
[Bug 2409] Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409
Darren Tucker <dtucker at zip.com.au> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |2360
-- 
You are receiving this mail because:
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at mindrot.org
2015-Jun-05  04:50 UTC
[Bug 2409] Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409 --- Comment #4 from Darren Tucker <dtucker at zip.com.au> --- err, ignore the defines.h piece, that's something else. -- You are receiving this mail because: You are watching the assignee of the bug. You are watching someone on the CC list of the bug.
bugzilla-daemon at mindrot.org
2015-Jun-05  04:55 UTC
[Bug 2409] Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409
Darren Tucker <dtucker at zip.com.au> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
-- 
You are receiving this mail because:
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at mindrot.org
2015-Jun-05  07:08 UTC
[Bug 2409] Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409
Damien Miller <djm at mindrot.org> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Attachment #2646|ok?(djm at mindrot.org)        |ok+
              Flags|                            |
--- Comment #5 from Damien Miller <djm at mindrot.org> ---
Comment on attachment 2646
  --> https://bugzilla.mindrot.org/attachment.cgi?id=2646
Add Linux powerpc64le and powerpcle entries
ok for this bit:
>diff --git a/config.guess b/config.guess
>index b94cde8..c563628 100755
>--- a/config.guess
>+++ b/config.guess
>@@ -982,6 +982,12 @@ EOF
>     ppc:Linux:*:*)
> 	echo powerpc-unknown-linux-gnu
> 	exit ;;
>+    ppc64le:Linux:*:*)
>+	echo powerpc64le-unknown-linux-gnu
>+	exit ;;
>+    ppcle:Linux:*:*)
>+	echo powerpcle-unknown-linux-gnu
>+	exit ;;
>     s390:Linux:*:* | s390x:Linux:*:*)
> 	echo ${UNAME_MACHINE}-ibm-linux
> 	exit ;;
this bit looks separate:
>diff --git a/defines.h b/defines.h
>index fa0ccba..3324166 100644
>--- a/defines.h
>+++ b/defines.h
>@@ -850,4 +850,9 @@ struct winsize {
> # endif /* gcc version */
> #endif /* __predict_true */
> 
>+int sprintf(char *, const char *, ...)	__attribute__((deprecated));
>+char *strcpy(char *, const char *)	__attribute__((deprecated));
>+char *strcat(char *, const char *)	__attribute__((deprecated));
>+char *gets(char *)			__attribute__((deprecated));
>+
> #endif /* _DEFINES_H */
-- 
You are receiving this mail because:
You are watching someone on the CC list of the bug.
You are watching the assignee of the bug.
bugzilla-daemon at mindrot.org
2015-Aug-11  13:03 UTC
[Bug 2409] Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409
Damien Miller <djm at mindrot.org> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED
--- Comment #6 from Damien Miller <djm at mindrot.org> ---
Set all RESOLVED bugs to CLOSED with release of OpenSSH 7.1
-- 
You are receiving this mail because:
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
bugzilla-daemon at mindrot.org
2023-Jan-13  02:18 UTC
[Bug 2409] Outdated GNU config.guess scripts
https://bugzilla.mindrot.org/show_bug.cgi?id=2409
Damien Miller <djm at mindrot.org> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Attachment #2643|ok?(djm at mindrot.org)        |
              Flags|                            |
-- 
You are receiving this mail because:
You are watching someone on the CC list of the bug.
You are watching the assignee of the bug.
Possibly Parallel Threads
- update config.guess and config.sub to support aarch64
- [LLVMdev] build errors while cross compiling llvm-gcc for ARM
- Problems with test on ppc
- [LLVMdev] build errors while cross compiling llvm-gcc for ARM
- [PATCH] ./configure fails to recognize alphapca56 (R-1.1.0)