Gitweb links:

...log 
http://git.netsurf-browser.org/toolchains.git/shortlog/7208e56be4888cd8a28d7117fc7dd4b168f49889
...commit 
http://git.netsurf-browser.org/toolchains.git/commit/7208e56be4888cd8a28d7117fc7dd4b168f49889
...tree 
http://git.netsurf-browser.org/toolchains.git/tree/7208e56be4888cd8a28d7117fc7dd4b168f49889

The branch, chris/gcc6-os3 has been updated
       via  7208e56be4888cd8a28d7117fc7dd4b168f49889 (commit)
       via  5fc7b9195fed4530550f0ab67c933d060da10e79 (commit)
       via  179dc6c30c2af02130f6dd79e8cedcffe242b2a6 (commit)
      from  976bc05e52f73ea8ab4a8272004d8295037aca0e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/toolchains.git/commit/?id=7208e56be4888cd8a28d7117fc7dd4b168f49889
commit 7208e56be4888cd8a28d7117fc7dd4b168f49889
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>

    Remove netinet/tcp.h requirement

diff --git a/sdk/recipes/patches/openssl/e_os.h.p 
b/sdk/recipes/patches/openssl/e_os.h.p
new file mode 100644
index 0000000..26c68f6
--- /dev/null
+++ b/sdk/recipes/patches/openssl/e_os.h.p
@@ -0,0 +1,12 @@
+--- e_os.h     2017-05-25 13:46:20.000000000 +0100
++++ e_os.h     2018-02-05 18:38:51.167349254 +0000
+@@ -423,7 +423,9 @@ struct servent *PASCAL getservbyname(con
+ #    endif
+ #    include <netinet/in.h>
+ #    include <arpa/inet.h>
++#    if defined(OPENSSL_SYS_AMIGAOS3)
+ #    include <netinet/tcp.h>
++#    endif
+ #   endif
+ 
+ #   ifdef OPENSSL_SYS_AIX


commitdiff 
http://git.netsurf-browser.org/toolchains.git/commit/?id=5fc7b9195fed4530550f0ab67c933d060da10e79
commit 5fc7b9195fed4530550f0ab67c933d060da10e79
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>

    Add a missing typedef for locale_t
    (clib2 maintainer is aware of this issue)

diff --git a/m68k-unknown-amigaos/recipes/patches/clib2/clib2.include.wchar.h.p 
b/m68k-unknown-amigaos/recipes/patches/clib2/clib2.include.wchar.h.p
new file mode 100644
index 0000000..968c3d0
--- /dev/null
+++ b/m68k-unknown-amigaos/recipes/patches/clib2/clib2.include.wchar.h.p
@@ -0,0 +1,10 @@
+--- include/wchar.h    2018-02-05 18:23:54.079257195 +0000
++++ include/wchar.h    2018-02-05 18:27:58.781471125 +0000
+@@ -175,6 +175,7 @@ extern size_t wcsftime(wchar_t *s, size_
+ /****************************************************************************/
+ 
+ #if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
++typedef void *locale_t;
+ 
+ extern long long wcstoll(const wchar_t *str, wchar_t **ptr, int base);
+ extern unsigned long long wcstoull(const wchar_t *str, wchar_t **ptr, int 
base);


commitdiff 
http://git.netsurf-browser.org/toolchains.git/commit/?id=179dc6c30c2af02130f6dd79e8cedcffe242b2a6
commit 179dc6c30c2af02130f6dd79e8cedcffe242b2a6
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>

    gcc update to try to fix issue with % op in 020 code

diff --git a/m68k-unknown-amigaos/Makefile b/m68k-unknown-amigaos/Makefile
index 6d26987..cc5aee9 100644
--- a/m68k-unknown-amigaos/Makefile
+++ b/m68k-unknown-amigaos/Makefile
@@ -3,7 +3,7 @@
 
 # sources
 
-UPSTREAM_GCC_VERSION := 6.4.1b-20180203
+UPSTREAM_GCC_VERSION := 6.4.1b-20180205
 UPSTREAM_GCC_TARBALL := v$(UPSTREAM_GCC_VERSION).tar.gz
 UPSTREAM_GCC_URI := 
https://github.com/chris-y/gcc/archive/$(UPSTREAM_GCC_TARBALL)
 


-----------------------------------------------------------------------

Summary of changes:
 m68k-unknown-amigaos/Makefile                              |    2 +-
 .../recipes/patches/clib2/clib2.include.wchar.h.p          |   10 ++++++++++
 sdk/recipes/patches/openssl/e_os.h.p                       |   12 ++++++++++++
 3 files changed, 23 insertions(+), 1 deletion(-)
 create mode 100644 
m68k-unknown-amigaos/recipes/patches/clib2/clib2.include.wchar.h.p
 create mode 100644 sdk/recipes/patches/openssl/e_os.h.p

diff --git a/m68k-unknown-amigaos/Makefile b/m68k-unknown-amigaos/Makefile
index 6d26987..cc5aee9 100644
--- a/m68k-unknown-amigaos/Makefile
+++ b/m68k-unknown-amigaos/Makefile
@@ -3,7 +3,7 @@
 
 # sources
 
-UPSTREAM_GCC_VERSION := 6.4.1b-20180203
+UPSTREAM_GCC_VERSION := 6.4.1b-20180205
 UPSTREAM_GCC_TARBALL := v$(UPSTREAM_GCC_VERSION).tar.gz
 UPSTREAM_GCC_URI := 
https://github.com/chris-y/gcc/archive/$(UPSTREAM_GCC_TARBALL)
 
diff --git a/m68k-unknown-amigaos/recipes/patches/clib2/clib2.include.wchar.h.p 
b/m68k-unknown-amigaos/recipes/patches/clib2/clib2.include.wchar.h.p
new file mode 100644
index 0000000..968c3d0
--- /dev/null
+++ b/m68k-unknown-amigaos/recipes/patches/clib2/clib2.include.wchar.h.p
@@ -0,0 +1,10 @@
+--- include/wchar.h    2018-02-05 18:23:54.079257195 +0000
++++ include/wchar.h    2018-02-05 18:27:58.781471125 +0000
+@@ -175,6 +175,7 @@ extern size_t wcsftime(wchar_t *s, size_
+ /****************************************************************************/
+ 
+ #if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
++typedef void *locale_t;
+ 
+ extern long long wcstoll(const wchar_t *str, wchar_t **ptr, int base);
+ extern unsigned long long wcstoull(const wchar_t *str, wchar_t **ptr, int 
base);
diff --git a/sdk/recipes/patches/openssl/e_os.h.p 
b/sdk/recipes/patches/openssl/e_os.h.p
new file mode 100644
index 0000000..26c68f6
--- /dev/null
+++ b/sdk/recipes/patches/openssl/e_os.h.p
@@ -0,0 +1,12 @@
+--- e_os.h     2017-05-25 13:46:20.000000000 +0100
++++ e_os.h     2018-02-05 18:38:51.167349254 +0000
+@@ -423,7 +423,9 @@ struct servent *PASCAL getservbyname(con
+ #    endif
+ #    include <netinet/in.h>
+ #    include <arpa/inet.h>
++#    if defined(OPENSSL_SYS_AMIGAOS3)
+ #    include <netinet/tcp.h>
++#    endif
+ #   endif
+ 
+ #   ifdef OPENSSL_SYS_AIX


-- 
Cross-compilation toolchains and environments

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to