Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/1770a8d9b621c53717ddf026e2314d2693321d8a
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/1770a8d9b621c53717ddf026e2314d2693321d8a
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/1770a8d9b621c53717ddf026e2314d2693321d8a

The branch, chris/ndk32 has been created
        at  1770a8d9b621c53717ddf026e2314d2693321d8a (commit)

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

    Amiga: squash warning

diff --git a/frontends/amiga/arexx.c b/frontends/amiga/arexx.c
index 243e927..f937fdb 100644
--- a/frontends/amiga/arexx.c
+++ b/frontends/amiga/arexx.c
@@ -709,7 +709,7 @@ RXHOOKF(rx_slabstats)
 #ifndef __amigaos4__
        BPTR fh = 0;
 
-       if(cmd->ac_ArgList[0] != NULL) {
+       if(cmd->ac_ArgList[0]) {
                fh = Open((char *)cmd->ac_ArgList[0], MODE_NEWFILE);
        }
        ami_memory_slab_dump(fh);


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

    Amiga: remove OS3.9 compatibility code

diff --git a/frontends/amiga/os3support.c b/frontends/amiga/os3support.c
index 98843c7..63037da 100644
--- a/frontends/amiga/os3support.c
+++ b/frontends/amiga/os3support.c
@@ -431,9 +431,5 @@ ULONG RefreshSetGadgetAttrs(struct Gadget *g, struct Window 
*w, struct Requester
        return RefreshSetGadgetAttrsA(g,w,r,(struct TagItem *) &tag1);
 }
 
-APTR NewObject(struct IClass * classPtr, CONST_STRPTR classID, ULONG tagList, 
...)
-{
-       return NewObjectA(classPtr, classID, (const struct TagItem *) &tagList);
-}
 #endif
 
diff --git a/frontends/amiga/os3support.h b/frontends/amiga/os3support.h
index 8d9fd2f..f511012 100644
--- a/frontends/amiga/os3support.h
+++ b/frontends/amiga/os3support.h
@@ -143,9 +143,6 @@
 /* application */
 #define Notify(...) (void)0
 
-/* DataTypes */
-#define SaveDTObjectA(O,W,R,F,M,I,A) DoDTMethod(O,W,R,DTM_WRITE,F,M,NULL)
-
 /* diskfont */
 #define EReleaseInfo ReleaseInfo
 #define EObtainInfo ObtainInfo
@@ -238,7 +235,6 @@ struct Node *GetSucc(struct Node *node);
 uint32 GetAttrs(Object *obj, Tag tag1, ...);
 ULONG RefreshSetGadgetAttrs(struct Gadget *g, struct Window *w, struct 
Requester *r, Tag tag1, ...);
 ULONG RefreshSetGadgetAttrsA(struct Gadget *g, struct Window *w, struct 
Requester *r, struct TagItem *tags);
-APTR NewObject(struct IClass * classPtr, CONST_STRPTR classID, ULONG tagList, 
...);
 
 /* Utility */
 char *ASPrintf(const char *fmt, ...);


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

    Amiga: squash warnings

diff --git a/frontends/amiga/agclass/amigaguide_class.c 
b/frontends/amiga/agclass/amigaguide_class.c
index 2b80223..f2790a3 100644
--- a/frontends/amiga/agclass/amigaguide_class.c
+++ b/frontends/amiga/agclass/amigaguide_class.c
@@ -299,7 +299,7 @@ uint32 agm_open(Class *cl, Object *o, Msg msg)
  if ( lod->agHandle ) agm_close(cl, o, msg);
 
    // (Re)establish the AmigaGuide context and open the database 
asynchronously.
-   if ( (lod->agHandle = OpenAmigaGuideAsync(&(lod->nag), NULL)) )
+   if ( (lod->agHandle = OpenAmigaGuideAsyncA(&(lod->nag), NULL)) )
     {
      if ( (lod->agSignal = AmigaGuideSignal(lod->agHandle)) )
       {
@@ -321,8 +321,8 @@ uint32 agm_open(Class *cl, Object *o, Msg msg)
        if ( lod->nag.nag_Context )
         {
          // A context node array is provided = open the current context node.
-         SetAmigaGuideContext(lod->agHandle, lod->agContextID, NULL);
-         retVal = SendAmigaGuideContext(lod->agHandle, NULL);
+         SetAmigaGuideContextA(lod->agHandle, lod->agContextID, NULL);
+         retVal = SendAmigaGuideContextA(lod->agHandle, NULL);
         }
        else
         {


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

    Amiga: start removing compatibility code which is no longer needed under 3.2

diff --git a/frontends/amiga/os3support.h b/frontends/amiga/os3support.h
index dc4e065..8d9fd2f 100644
--- a/frontends/amiga/os3support.h
+++ b/frontends/amiga/os3support.h
@@ -35,6 +35,9 @@
 /* Include prototypes for amigalib */
 #include <clib/alib_protos.h>
 
+#include <graphics/gfx.h>              /* struct Rectangle */
+#include <intuition/intuition.h>       /* struct Gadget, Window, Requester */
+
 #ifndef EXEC_MEMORY_H
 #include <exec/memory.h>
 #endif
@@ -118,8 +121,6 @@
 
 /* Other constants */
 #define BVS_DISPLAY BVS_NONE
-#define IDCMP_EXTENDEDMOUSE 0
-#define WINDOW_BACKMOST 0
 #define DN_FULLPATH 0
 #define BGBACKFILL JAM1
 #define OFF_OPEN 0
@@ -169,11 +170,9 @@
 #define IDoMethod DoMethod
 #define IDoMethodA DoMethodA
 #define IDoSuperMethodA DoSuperMethodA
-#define ShowWindow(...) (void)0
 
 /* Utility */
 #define SetMem memset
-#define SNPrintf snprintf
 
 /* Integral type definitions */
 typedef int8_t int8;
@@ -185,18 +184,6 @@ typedef uint32_t uint32;
 typedef int64_t int64;
 typedef uint64_t uint64;
 
-/* TimeVal */
-struct TimeVal {
-       uint32 Seconds;
-       uint32 Microseconds;
-};
-
-/* TimeRequest */
-struct TimeRequest {
-       struct IORequest Request;
-       struct TimeVal Time;
-};
-
 /* OutlineFont */
 struct OutlineFont {
        struct BulletBase *BulletBase;


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


-- 
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to