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.

29 lines
700 B

  1. --- a/configure.ac
  2. +++ b/configure.ac
  3. @@ -824,25 +824,8 @@ dnl ************************************
  4. dnl Check for %qu format (FreeBSD 4.x)
  5. dnl FreeBSD 4.x does not support %llu
  6. -AC_MSG_CHECKING(for long long format)
  7. -AC_TRY_RUN(
  8. -[
  9. -#include <sys/types.h>
  10. -int main()
  11. -{
  12. - uint64_t i;
  13. -
  14. - sscanf("200000000010020", "%qu", &i);
  15. -
  16. - if (i == 200000000010020) return 0;
  17. - else return -1;
  18. -}
  19. -],
  20. -AC_DEFINE(HAVE_LONG_LONG_QU, 1 ,[Define to 1 if format '%qu' exists.])
  21. -AC_MSG_RESULT(yes),
  22. -AC_MSG_RESULT(no))
  23. -
  24. dnl option -rdynamic is needed for readable backtraces
  25. +
  26. AC_MSG_CHECKING(for -rdynamic linking option)
  27. saved_LDFLAGS="$LDFLAGS"
  28. LDFLAGS="-rdynamic $LDFLAGS"