You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
435 B

  1. --- a/programs/fileio.c
  2. +++ b/programs/fileio.c
  3. @@ -175,7 +175,7 @@ static void clearHandler(void)
  4. #if !defined(BACKTRACE_ENABLE)
  5. /* automatic detector : backtrace enabled by default on linux+glibc and osx */
  6. -# if (defined(__linux__) && defined(__GLIBC__)) \
  7. +# if (defined(__linux__) && (defined(__GLIBC__) && !defined(__UCLIBC__))) \
  8. || (defined(__APPLE__) && defined(__MACH__))
  9. # define BACKTRACE_ENABLE 1
  10. # else