Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 571036 | Differences between
and this patch

Collapse All | Expand All

(-)mesa-11.1.2.orig/configure.ac (+1 lines)
Lines 681-686 Link Here
681
AC_CHECK_HEADER([sys/sysctl.h], [DEFINES="$DEFINES -DHAVE_SYS_SYSCTL_H"])
681
AC_CHECK_HEADER([sys/sysctl.h], [DEFINES="$DEFINES -DHAVE_SYS_SYSCTL_H"])
682
AC_CHECK_FUNC([strtof], [DEFINES="$DEFINES -DHAVE_STRTOF"])
682
AC_CHECK_FUNC([strtof], [DEFINES="$DEFINES -DHAVE_STRTOF"])
683
AC_CHECK_FUNC([mkostemp], [DEFINES="$DEFINES -DHAVE_MKOSTEMP"])
683
AC_CHECK_FUNC([mkostemp], [DEFINES="$DEFINES -DHAVE_MKOSTEMP"])
684
AC_CHECK_HEADER([execinfo.h], [DEFINES="$DEFINES -DHAVE_EXECINFO_H"])
684
685
685
dnl Check to see if dlopen is in default libraries (like Solaris, which
686
dnl Check to see if dlopen is in default libraries (like Solaris, which
686
dnl has it in libc), or if libdl is needed to get it.
687
dnl has it in libc), or if libdl is needed to get it.
(-)mesa-11.1.2.orig/src/gallium/auxiliary/util/u_debug_symbol.c (-2 / +2 lines)
Lines 219-225 Link Here
219
#endif /* PIPE_OS_WINDOWS */
219
#endif /* PIPE_OS_WINDOWS */
220
220
221
221
222
#if defined(__GLIBC__) && !defined(__UCLIBC__)
222
#if defined(HAVE_EXECINFO_H)
223
223
224
#include <execinfo.h>
224
#include <execinfo.h>
225
225
Lines 240-246 Link Here
240
   return TRUE;
240
   return TRUE;
241
}
241
}
242
242
243
#endif /* defined(__GLIBC__) && !defined(__UCLIBC__) */
243
#endif /* defined(HAVE_EXECINFO_H) */
244
244
245
245
246
void
246
void
(-)mesa-11.1.2.orig/src/mapi/glapi/gen/gl_gentable.py (-1 / +1 lines)
Lines 44-50 Link Here
44
#endif
44
#endif
45
45
46
#if (defined(GLXEXT) && defined(HAVE_BACKTRACE)) \\
46
#if (defined(GLXEXT) && defined(HAVE_BACKTRACE)) \\
47
	|| (!defined(GLXEXT) && defined(DEBUG) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__DragonFly__))
47
	|| (!defined(GLXEXT) && defined(DEBUG) && defined(HAVE_EXECINFO_H))
48
#define USE_BACKTRACE
48
#define USE_BACKTRACE
49
#endif
49
#endif
50
50
(-)mesa-11.1.2.orig/src/mapi/glapi/glapi_gentable.c (-1 / +1 lines)
Lines 36-42 Link Here
36
#endif
36
#endif
37
37
38
#if (defined(GLXEXT) && defined(HAVE_BACKTRACE)) \
38
#if (defined(GLXEXT) && defined(HAVE_BACKTRACE)) \
39
	|| (!defined(GLXEXT) && defined(DEBUG) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__DragonFly__))
39
	|| (!defined(GLXEXT) && defined(DEBUG) && defined(HAVE_EXECINFO_H))
40
#define USE_BACKTRACE
40
#define USE_BACKTRACE
41
#endif
41
#endif
42
42
(-)mesa-11.1.2.orig/src/mesa/drivers/dri/i915/intel_regions.c (-1 / +1 lines)
Lines 57-63 Link Here
57
 */
57
 */
58
#define DEBUG_BACKTRACE_SIZE 0
58
#define DEBUG_BACKTRACE_SIZE 0
59
59
60
#if DEBUG_BACKTRACE_SIZE == 0
60
#if DEBUG_BACKTRACE_SIZE == 0 || !defined(HAVE_EXECINFO_H)
61
/* Use the standard debug output */
61
/* Use the standard debug output */
62
#define _DBG(...) DBG(__VA_ARGS__)
62
#define _DBG(...) DBG(__VA_ARGS__)
63
#else
63
#else

Return to bug 571036