[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[6549] * tp/Texinfo/Convert/XSParagraph/XSParagraph.xs,
From: |
Patrice Dumas |
Subject: |
[6549] * tp/Texinfo/Convert/XSParagraph/XSParagraph.xs, |
Date: |
Tue, 18 Aug 2015 22:05:04 +0000 |
Revision: 6549
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6549
Author: pertusus
Date: 2015-08-18 22:05:03 +0000 (Tue, 18 Aug 2015)
Log Message:
-----------
* tp/Texinfo/Convert/XSParagraph/XSParagraph.xs,
tp/Texinfo/Convert/XSParagraph/*.c: protect #include <config.h> by
#ifdef HAVE_CONFIG_H.
Modified Paths:
--------------
trunk/ChangeLog
trunk/tp/Texinfo/Convert/XSParagraph/XSParagraph.xs
trunk/tp/Texinfo/Convert/XSParagraph/text.c
trunk/tp/Texinfo/Convert/XSParagraph/xspara.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-08-18 21:56:42 UTC (rev 6548)
+++ trunk/ChangeLog 2015-08-18 22:05:03 UTC (rev 6549)
@@ -1,3 +1,9 @@
+2015-08-19 Patrice Dumas <address@hidden>
+
+ * tp/Texinfo/Convert/XSParagraph/XSParagraph.xs,
+ tp/Texinfo/Convert/XSParagraph/*.c: protect #include <config.h> by
+ #ifdef HAVE_CONFIG_H.
+
2015-08-18 Gavin Smith <address@hidden>
* configure.ac: Only configure in tp/Texinfo/Convert/XSParagraph
Modified: trunk/tp/Texinfo/Convert/XSParagraph/XSParagraph.xs
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/XSParagraph.xs 2015-08-18 21:56:42 UTC
(rev 6548)
+++ trunk/tp/Texinfo/Convert/XSParagraph/XSParagraph.xs 2015-08-18 22:05:03 UTC
(rev 6549)
@@ -1,4 +1,6 @@
-#include <config.h>
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
#define PERL_NO_GET_CONTEXT
#include "EXTERN.h"
Modified: trunk/tp/Texinfo/Convert/XSParagraph/text.c
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/text.c 2015-08-18 21:56:42 UTC (rev
6548)
+++ trunk/tp/Texinfo/Convert/XSParagraph/text.c 2015-08-18 22:05:03 UTC (rev
6549)
@@ -1,7 +1,9 @@
/* Copyright 2014, 2015 */
#define _GNU_SOURCE
-#include <config.h>
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
Modified: trunk/tp/Texinfo/Convert/XSParagraph/xspara.c
===================================================================
--- trunk/tp/Texinfo/Convert/XSParagraph/xspara.c 2015-08-18 21:56:42 UTC
(rev 6548)
+++ trunk/tp/Texinfo/Convert/XSParagraph/xspara.c 2015-08-18 22:05:03 UTC
(rev 6549)
@@ -2,7 +2,9 @@
#define _GNU_SOURCE
-#include <config.h>
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [6549] * tp/Texinfo/Convert/XSParagraph/XSParagraph.xs,,
Patrice Dumas <=