Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/cdf821454ae0328224c037398ac2f41ab4acd163
...commit
http://git.netsurf-browser.org/netsurf.git/commit/cdf821454ae0328224c037398ac2f41ab4acd163
...tree
http://git.netsurf-browser.org/netsurf.git/tree/cdf821454ae0328224c037398ac2f41ab4acd163
The branch, chris/ndk32 has been updated
via cdf821454ae0328224c037398ac2f41ab4acd163 (commit)
via c226bb0e4c99cab3ea7dfbf56a1cd54b7a8780bc (commit)
via c5bc9b1aa7682fdae2c496de61ee300a72e7f0de (commit)
from 6a5dcf12d65c6bac6b38d48139af965bac60486d (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=cdf821454ae0328224c037398ac2f41ab4acd163
commit cdf821454ae0328224c037398ac2f41ab4acd163
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Amiga: remove more defines no longer needed with NDK 3.2
diff --git a/frontends/amiga/os3support.h b/frontends/amiga/os3support.h
index ce7ae70..f04b37b 100644
--- a/frontends/amiga/os3support.h
+++ b/frontends/amiga/os3support.h
@@ -69,12 +69,8 @@
#define BITMAP_HasAlpha TAG_IGNORE
#define BLITA_UseSrcAlpha TAG_IGNORE
#define BLITA_MaskPlane TAG_IGNORE
-#define CLICKTAB_CloseImage TAG_IGNORE
#define CLICKTAB_FlagImage TAG_IGNORE
#define CLICKTAB_LabelTruncate TAG_IGNORE
-#define CLICKTAB_NodeClosed TAG_IGNORE
-#define GETFONT_OTagOnly TAG_IGNORE
-#define GETFONT_ScalableOnly TAG_IGNORE
#define PDTA_PromoteMask TAG_IGNORE
#define RPTAG_APenColor TAG_IGNORE
#define GA_ContextMenu TAG_IGNORE
@@ -84,9 +80,7 @@
#define LBNCA_SoftStyle TAG_IGNORE
#define LISTBROWSER_Striping TAG_IGNORE
#define SA_Compositing TAG_IGNORE
-#define SBNA_Text TAG_IGNORE
#define SBNA_HintInfo TAG_IGNORE
-#define TNA_CloseGadget TAG_IGNORE
#define TNA_HintInfo TAG_IGNORE
#define WA_ContextMenuHook TAG_IGNORE
#define WA_ToolBox TAG_IGNORE
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=c226bb0e4c99cab3ea7dfbf56a1cd54b7a8780bc
commit c226bb0e4c99cab3ea7dfbf56a1cd54b7a8780bc
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Amiga: fix slab allocator type
diff --git a/frontends/amiga/memory.c b/frontends/amiga/memory.c
index 35ca969..17904f2 100755
--- a/frontends/amiga/memory.c
+++ b/frontends/amiga/memory.c
@@ -27,7 +27,7 @@
#include "content/llcache.h"
#include "utils/log.h"
-ULONG __slab_max_size = 2048; /* Enable clib2's slab allocator */
+unsigned long __slab_max_size = 2048; /* Enable clib2's slab allocator */
enum {
PURGE_NONE = 0,
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=c5bc9b1aa7682fdae2c496de61ee300a72e7f0de
commit c5bc9b1aa7682fdae2c496de61ee300a72e7f0de
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Amiga: remove UtilityBase conflict
diff --git a/frontends/amiga/libs.c b/frontends/amiga/libs.c
index 3c09bcb..fe94eb2 100644
--- a/frontends/amiga/libs.c
+++ b/frontends/amiga/libs.c
@@ -172,8 +172,6 @@
#ifdef __amigaos4__
AMINS_LIB_STRUCT(Application);
-#else
-AMINS_LIB_STRUCT(Utility)
#endif
AMINS_LIB_STRUCT(Asl);
AMINS_LIB_STRUCT(DataTypes);
-----------------------------------------------------------------------
Summary of changes:
frontends/amiga/libs.c | 2 --
frontends/amiga/memory.c | 2 +-
frontends/amiga/os3support.h | 6 ------
3 files changed, 1 insertion(+), 9 deletions(-)
diff --git a/frontends/amiga/libs.c b/frontends/amiga/libs.c
index 3c09bcb..fe94eb2 100644
--- a/frontends/amiga/libs.c
+++ b/frontends/amiga/libs.c
@@ -172,8 +172,6 @@
#ifdef __amigaos4__
AMINS_LIB_STRUCT(Application);
-#else
-AMINS_LIB_STRUCT(Utility)
#endif
AMINS_LIB_STRUCT(Asl);
AMINS_LIB_STRUCT(DataTypes);
diff --git a/frontends/amiga/memory.c b/frontends/amiga/memory.c
index 35ca969..17904f2 100755
--- a/frontends/amiga/memory.c
+++ b/frontends/amiga/memory.c
@@ -27,7 +27,7 @@
#include "content/llcache.h"
#include "utils/log.h"
-ULONG __slab_max_size = 2048; /* Enable clib2's slab allocator */
+unsigned long __slab_max_size = 2048; /* Enable clib2's slab allocator */
enum {
PURGE_NONE = 0,
diff --git a/frontends/amiga/os3support.h b/frontends/amiga/os3support.h
index ce7ae70..f04b37b 100644
--- a/frontends/amiga/os3support.h
+++ b/frontends/amiga/os3support.h
@@ -69,12 +69,8 @@
#define BITMAP_HasAlpha TAG_IGNORE
#define BLITA_UseSrcAlpha TAG_IGNORE
#define BLITA_MaskPlane TAG_IGNORE
-#define CLICKTAB_CloseImage TAG_IGNORE
#define CLICKTAB_FlagImage TAG_IGNORE
#define CLICKTAB_LabelTruncate TAG_IGNORE
-#define CLICKTAB_NodeClosed TAG_IGNORE
-#define GETFONT_OTagOnly TAG_IGNORE
-#define GETFONT_ScalableOnly TAG_IGNORE
#define PDTA_PromoteMask TAG_IGNORE
#define RPTAG_APenColor TAG_IGNORE
#define GA_ContextMenu TAG_IGNORE
@@ -84,9 +80,7 @@
#define LBNCA_SoftStyle TAG_IGNORE
#define LISTBROWSER_Striping TAG_IGNORE
#define SA_Compositing TAG_IGNORE
-#define SBNA_Text TAG_IGNORE
#define SBNA_HintInfo TAG_IGNORE
-#define TNA_CloseGadget TAG_IGNORE
#define TNA_HintInfo TAG_IGNORE
#define WA_ContextMenuHook TAG_IGNORE
#define WA_ToolBox TAG_IGNORE
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]