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

Collapse All | Expand All

(-)a/configure.ac (+3 lines)
Lines 233-238 AC_CHECK_LIB([stdc++], [__cxa_demangle], [dnl Link Here
233
AC_DEFINE([USE_DEMANGLE], [1], [Defined if demangling is enabled])])
233
AC_DEFINE([USE_DEMANGLE], [1], [Defined if demangling is enabled])])
234
AM_CONDITIONAL(DEMANGLE, test "$ac_cv_lib_stdcpp___cxa_demangle" = yes)
234
AM_CONDITIONAL(DEMANGLE, test "$ac_cv_lib_stdcpp___cxa_demangle" = yes)
235
235
236
dnl Check for __mempcpy
237
AC_CHECK_FUNCS_ONCE([__mempcpy])
238
236
dnl The directories with content.
239
dnl The directories with content.
237
240
238
dnl Documentation.
241
dnl Documentation.
(-)a/libelf/elf_begin.c (-1 / +5 lines)
Lines 31-36 Link Here
31
# include <config.h>
31
# include <config.h>
32
#endif
32
#endif
33
33
34
/* If we don't have __mempcpy fall back on mempcpy */
35
#ifndef HAVE___MEMPCPY
36
# define __mempcpy mempcpy
37
#endif
38
34
#include <assert.h>
39
#include <assert.h>
35
#include <ctype.h>
40
#include <ctype.h>
36
#include <errno.h>
41
#include <errno.h>
37
- 

Return to bug 470884