https://bugzilla.mindrot.org/show_bug.cgi?id=2409
Damien Miller <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #2646|ok?([email protected]) |ok+ Flags| | --- Comment #5 from Damien Miller <[email protected]> --- 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. _______________________________________________ openssh-bugs mailing list [email protected] https://lists.mindrot.org/mailman/listinfo/openssh-bugs
