Gitweb links:

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

The branch, master has been updated
       via  d923e109cd56c553c8e87cdb8bdab5085e68cc73 (commit)
      from  88ae1ff267c541ded537672ac7b7f29308ad701d (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=d923e109cd56c553c8e87cdb8bdab5085e68cc73
commit d923e109cd56c553c8e87cdb8bdab5085e68cc73
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>

    Fix OS3 build

diff --git a/frontends/amiga/drag.c b/frontends/amiga/drag.c
index 9fdd197..b653be8 100644
--- a/frontends/amiga/drag.c
+++ b/frontends/amiga/drag.c
@@ -323,6 +323,7 @@ void *ami_window_at_pointer(int type)
 }
 
 #else
+#include "utils/errors.h"
 #include "amiga/drag.h"
 
 void gui_drag_save_object(struct gui_window *g, struct hlcache_handle *c,
@@ -348,6 +349,7 @@ void ami_drag_icon_close(struct Window *win)
 
 bool ami_drag_icon_move(void)
 {
+       return false;
 }
 
 BOOL ami_drag_in_progress(void)
@@ -355,6 +357,11 @@ BOOL ami_drag_in_progress(void)
        return FALSE;
 }
 
+bool ami_drag_has_data(void)
+{
+       return false;
+}
+
 void *ami_window_at_pointer(int type)
 {
        return NULL;
diff --git a/frontends/amiga/drag.h b/frontends/amiga/drag.h
index 7048a10..c0b040f 100644
--- a/frontends/amiga/drag.h
+++ b/frontends/amiga/drag.h
@@ -19,6 +19,7 @@
 #ifndef AMIGA_DRAG_H
 #define AMIGA_DRAG_H
 
+#include <stdbool.h>
 #include <exec/types.h>
 #include "netsurf/window.h"
 


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

Summary of changes:
 frontends/amiga/drag.c |    7 +++++++
 frontends/amiga/drag.h |    1 +
 2 files changed, 8 insertions(+)

diff --git a/frontends/amiga/drag.c b/frontends/amiga/drag.c
index 9fdd197..b653be8 100644
--- a/frontends/amiga/drag.c
+++ b/frontends/amiga/drag.c
@@ -323,6 +323,7 @@ void *ami_window_at_pointer(int type)
 }
 
 #else
+#include "utils/errors.h"
 #include "amiga/drag.h"
 
 void gui_drag_save_object(struct gui_window *g, struct hlcache_handle *c,
@@ -348,6 +349,7 @@ void ami_drag_icon_close(struct Window *win)
 
 bool ami_drag_icon_move(void)
 {
+       return false;
 }
 
 BOOL ami_drag_in_progress(void)
@@ -355,6 +357,11 @@ BOOL ami_drag_in_progress(void)
        return FALSE;
 }
 
+bool ami_drag_has_data(void)
+{
+       return false;
+}
+
 void *ami_window_at_pointer(int type)
 {
        return NULL;
diff --git a/frontends/amiga/drag.h b/frontends/amiga/drag.h
index 7048a10..c0b040f 100644
--- a/frontends/amiga/drag.h
+++ b/frontends/amiga/drag.h
@@ -19,6 +19,7 @@
 #ifndef AMIGA_DRAG_H
 #define AMIGA_DRAG_H
 
+#include <stdbool.h>
 #include <exec/types.h>
 #include "netsurf/window.h"
 


-- 
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