]> gitweb.michael.orlitzky.com - libsvgtiny.git/commitdiff
Update CFLAGS to avoid deprication warning for glibc 2.21 and later.
authorVincent Sanders <vince@kyllikki.org>
Sun, 22 Mar 2015 00:22:24 +0000 (00:22 +0000)
committerVincent Sanders <vince@kyllikki.org>
Sun, 22 Mar 2015 00:22:24 +0000 (00:22 +0000)
Makefile

index 4563b6af0fa2ae0c7a2b89a9d5e8ad81d252263e..308e7d0558333576c394e420e5aaa3d755373432 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,9 @@
+#!/bin/make
+#
+# Makefile for libsvgtiny
+#
+# Copyright 2009-1015 John-Mark Bell <jmb@netsurf-browser.org>
+
 # Component settings
 COMPONENT := svgtiny
 COMPONENT_VERSION := 0.1.3
@@ -22,8 +28,9 @@ ifneq ($(BUILD),i586-pc-haiku)
   endif
 endif
 
-CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
-       -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
+CFLAGS := -D_BSD_SOURCE -D_DEFAULT_SOURCE \
+       -I$(CURDIR)/include/ -I$(CURDIR)/src \
+       $(WARNFLAGS) $(CFLAGS)
 ifneq ($(GCCVER),2)
   CFLAGS := $(CFLAGS) -std=c99
 else