Hi all,
I have attached a patch for the MCPP FTBFS reported in #1075263 can
somebody upload the patch to debian?
Cheers,
José
--
José Gutiérrez de la Concha
ZeroC, Inc.
--- a/src/expand.c
+++ b/src/expand.c
@@ -710,7 +710,9 @@
} else {
m_inf->locs.start_col = m_inf->locs.start_line = 0L;
}
- m_inf->args = m_inf->loc_args = NULL; /* Default args */
+ /* Default args */
+ m_inf->args = NULL;
+ m_inf->loc_args = NULL;
for (num = 1, recurs = 0; num < m_num; num++)
if (mac_inf[ num].defp == defp)
recurs++; /* Recursively nested macro */
--- a/src/configed.H
+++ b/src/configed.H
@@ -299,7 +299,7 @@
#define _POSIX_ 1
#define _POSIX_SOURCE 1
#ifndef _POSIX_C_SOURCE
-#define _POSIX_C_SOURCE 1
+#define _POSIX_C_SOURCE 200112L // Ensure readlink is available
#define _POSIX_C_SOURCE_defined 1
#endif
#include "limits.h"