Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/51c2d48096f8f53583422113508912b3243c48f0
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/51c2d48096f8f53583422113508912b3243c48f0
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/51c2d48096f8f53583422113508912b3243c48f0

The branch, master has been updated
       via  51c2d48096f8f53583422113508912b3243c48f0 (commit)
      from  69d31afcdeb3851944774ae5c92603b137db1ae7 (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/netsurf.git/commit/?id=51c2d48096f8f53583422113508912b3243c48f0
commit 51c2d48096f8f53583422113508912b3243c48f0
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    amiga os 3 does not have strtoull so use strtoul as next best thing

diff --git a/utils/utils.h b/utils/utils.h
index 3995071..31a86c6 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -75,6 +75,10 @@
 #define ceilf(x) (float)ceil((double)x)
 #endif
 
+#if !defined(__amigaos4__) && defined(__AMIGA__)
+#define strtoull(n,e,b) (unsigned long long int)strtoul(n,e,b)
+#endif
+
 /**
  * Calculate length of constant C string.
  *


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

Summary of changes:
 utils/utils.h |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/utils/utils.h b/utils/utils.h
index 3995071..31a86c6 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -75,6 +75,10 @@
 #define ceilf(x) (float)ceil((double)x)
 #endif
 
+#if !defined(__amigaos4__) && defined(__AMIGA__)
+#define strtoull(n,e,b) (unsigned long long int)strtoul(n,e,b)
+#endif
+
 /**
  * Calculate length of constant C string.
  *


-- 
NetSurf Browser

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

Reply via email to