fftw3.diff 697 B

1234567891011121314151617181920212223242526
  1. --- config.h.in 2014-03-04 11:44:58 -0700
  2. +++ config.h.in 2016-03-30 11:42:49 -0600
  3. @@ -142,9 +142,6 @@
  4. /* Define to 1 if you have the `gethrtime' function. */
  5. #undef HAVE_GETHRTIME
  6. -/* Define to 1 if you have the `gettimeofday' function. */
  7. -#undef HAVE_GETTIMEOFDAY
  8. -
  9. /* Define to 1 if hrtime_t is defined in <sys/time.h> */
  10. #undef HAVE_HRTIME_T
  11. --- kernel/assert.c 2014-03-04 11:41:03 -0700
  12. +++ kernel/assert.c 2016-04-01 09:41:05 -0600
  13. @@ -24,8 +24,10 @@
  14. void X(assertion_failed)(const char *s, int line, const char *file)
  15. {
  16. +#if 0
  17. fflush(stdout);
  18. fprintf(stderr, "fftw: %s:%d: assertion failed: %s\n", file, line, s);
  19. +#endif
  20. #ifdef HAVE_ABORT
  21. abort();
  22. #else