slackbuilds_ponce/graphics/dia/patches/0003-Bug-585004-implicit-declaration-of-function-finite-2.patch
Matteo Bernardini bce367d60b graphics/dia: Applied patches from upstream.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
2013-11-28 00:13:12 -06:00

36 lines
1,020 B
Diff

From 3a589dedfbf2b0ada111a3e2cb6b14837f2c8b5e Mon Sep 17 00:00:00 2001
From: Hans Breuer <hans@breuer.org>
Date: Sat, 6 Jun 2009 20:01:38 +0200
Subject: [PATCH 03/24] Bug #585004 - implicit declaration of function 'finite'
(2nd iteration)
To get the definition either _BSD_SOURCE or _SVID_SOURCE needs to
be defined before inclusion of <math.h>.
Removed HAVE_CONFIG_H and chanegd inclusion order
(cherry picked from commit 8f363f6dd82f9fbf502fceaf1d73a258c17593db)
---
objects/standard/arc.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/objects/standard/arc.c b/objects/standard/arc.c
index 28302a6..3a50838 100644
--- a/objects/standard/arc.c
+++ b/objects/standard/arc.c
@@ -16,13 +16,11 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#ifdef HAVE_CONFIG_H
#include <config.h>
-#endif
-#include <assert.h>
#define _BSD_SOURCE 1 /* to get finite */
#include <math.h>
+#include <assert.h>
#include "intl.h"
#include "object.h"
--
1.8.4.4