Gitweb links:
...log
http://git.netsurf-browser.org/libnsutils.git/shortlog/8aa0a0c18f3c9b27b7...
...commit
http://git.netsurf-browser.org/libnsutils.git/commit/8aa0a0c18f3c9b27b740...
...tree
http://git.netsurf-browser.org/libnsutils.git/tree/8aa0a0c18f3c9b27b740ae...
The branch, master has been updated
via 8aa0a0c18f3c9b27b740aefd0ec4c3e2f34f7fd2 (commit)
from e9e4ee6ffa7fa316ba8d479e19639391a3d58e57 (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/libnsutils.git/commit/?id=8aa0a0c18f3c9b27...
commit 8aa0a0c18f3c9b27b740aefd0ec4c3e2f34f7fd2
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
need _GNU_SOURCE to be defined to get useful unistd on some platforms
diff --git a/Makefile b/Makefile
index e84dc12..833cc1d 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-Wmissing-declarations -Wnested-externs
-CFLAGS := -D_BSD_SOURCE -D_DEFAULT_SOURCE \
+CFLAGS := -D_GNU_SOURCE -D_DEFAULT_SOURCE \
-I$(CURDIR)/include/ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
ifneq ($(GCCVER),2)
CFLAGS := $(CFLAGS) -std=c99
-----------------------------------------------------------------------
Summary of changes:
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index e84dc12..833cc1d 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-Wmissing-declarations -Wnested-externs
-CFLAGS := -D_BSD_SOURCE -D_DEFAULT_SOURCE \
+CFLAGS := -D_GNU_SOURCE -D_DEFAULT_SOURCE \
-I$(CURDIR)/include/ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
ifneq ($(GCCVER),2)
CFLAGS := $(CFLAGS) -std=c99
--
NetSurf generalised utility library