Gitweb links:

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

The branch, master has been updated
       via  2171f13ab334716250ca2bc53946806f7a88c8a3 (commit)
      from  936cb3ce0c746011af67c2b4f0e6df5070c9d9e6 (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=2171f13ab334716250ca2bc53946806f7a88c8a3
commit 2171f13ab334716250ca2bc53946806f7a88c8a3
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    enable gnu extensions to get strcasestr from string.h

diff --git a/content/handlers/html/html_css.c b/content/handlers/html/html_css.c
index f65c255..70ed83f 100644
--- a/content/handlers/html/html_css.c
+++ b/content/handlers/html/html_css.c
@@ -21,6 +21,8 @@
  * Processing for html content css operations.
  */
 
+#define _GNU_SOURCE /* strcasestr needs this for string.h */
+
 #include <assert.h>
 #include <ctype.h>
 #include <stdint.h>
diff --git a/desktop/treeview.c b/desktop/treeview.c
index d730e74..22df7c9 100644
--- a/desktop/treeview.c
+++ b/desktop/treeview.c
@@ -22,6 +22,8 @@
  * Treeview handling implementation.
  */
 
+#define _GNU_SOURCE /* strcasestr needs this for string.h */
+
 #include <string.h>
 
 #include "utils/utils.h"


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

Summary of changes:
 content/handlers/html/html_css.c |    2 ++
 desktop/treeview.c               |    2 ++
 2 files changed, 4 insertions(+)

diff --git a/content/handlers/html/html_css.c b/content/handlers/html/html_css.c
index f65c255..70ed83f 100644
--- a/content/handlers/html/html_css.c
+++ b/content/handlers/html/html_css.c
@@ -21,6 +21,8 @@
  * Processing for html content css operations.
  */
 
+#define _GNU_SOURCE /* strcasestr needs this for string.h */
+
 #include <assert.h>
 #include <ctype.h>
 #include <stdint.h>
diff --git a/desktop/treeview.c b/desktop/treeview.c
index d730e74..22df7c9 100644
--- a/desktop/treeview.c
+++ b/desktop/treeview.c
@@ -22,6 +22,8 @@
  * Treeview handling implementation.
  */
 
+#define _GNU_SOURCE /* strcasestr needs this for string.h */
+
 #include <string.h>
 
 #include "utils/utils.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