[svn:parrot] r37626 - trunk/config/auto/backtrace

cotto at svn.parrot.org cotto at svn.parrot.org
Sat Mar 21 21:36:25 UTC 2009


Author: cotto
Date: Sat Mar 21 21:36:23 2009
New Revision: 37626
URL: https://trac.parrot.org/parrot/changeset/37626

Log:
[config] Start fixing the Dl_info probe.  The probe that uses this file seems
to ignore whether it works, but now it'll at least ignore correct data.

Modified:
   trunk/config/auto/backtrace/test_dlinfo_c.in

Modified: trunk/config/auto/backtrace/test_dlinfo_c.in
==============================================================================
--- trunk/config/auto/backtrace/test_dlinfo_c.in	Sat Mar 21 20:34:26 2009	(r37625)
+++ trunk/config/auto/backtrace/test_dlinfo_c.in	Sat Mar 21 21:36:23 2009	(r37626)
@@ -6,6 +6,9 @@
 */
 
 #include <execinfo.h>
+#ifndef __USE_GNU
+#  define __USE_GNU
+#endif
 #include <dlfcn.h>
 #include <stdlib.h>
 


More information about the parrot-commits mailing list