Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/25963316407ee678c8bcb...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/25963316407ee678c8bcb40...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/25963316407ee678c8bcb40f3...
The branch, master has been updated
via 25963316407ee678c8bcb40f3338029a68fe4b56 (commit)
from 6ce6b62099458c10eab762777e5d812c895df5d4 (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=25963316407ee678c8b...
commit 25963316407ee678c8bcb40f3338029a68fe4b56
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
seems freebsd needs _XOPEN_SOURCE for math.h macros to be defined
diff --git a/frontends/gtk/Makefile b/frontends/gtk/Makefile
index c19720f..72d7483 100644
--- a/frontends/gtk/Makefile
+++ b/frontends/gtk/Makefile
@@ -37,6 +37,7 @@ GTKCFLAGS := -std=c99 -Dgtk -Dnsgtk -g \
$(GTKDEPFLAGS) \
-D_BSD_SOURCE \
-D_DEFAULT_SOURCE \
+ -D_XOPEN_SOURCE=700 \
-D_POSIX_C_SOURCE=200809L \
-D_NETBSD_SOURCE \
-DGTK_RESPATH=\"$(NETSURF_GTK_RES_PATH)\"
-----------------------------------------------------------------------
Summary of changes:
frontends/gtk/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/frontends/gtk/Makefile b/frontends/gtk/Makefile
index c19720f..72d7483 100644
--- a/frontends/gtk/Makefile
+++ b/frontends/gtk/Makefile
@@ -37,6 +37,7 @@ GTKCFLAGS := -std=c99 -Dgtk -Dnsgtk -g \
$(GTKDEPFLAGS) \
-D_BSD_SOURCE \
-D_DEFAULT_SOURCE \
+ -D_XOPEN_SOURCE=700 \
-D_POSIX_C_SOURCE=200809L \
-D_NETBSD_SOURCE \
-DGTK_RESPATH=\"$(NETSURF_GTK_RES_PATH)\"
--
NetSurf Browser