patch-src_auto_configure 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --- vim73.orig/src/auto/configure 2010-08-13 16:17:15.000000000 +0200
  2. +++ vim73/src/auto/configure 2010-09-20 02:59:14.017806852 +0200
  3. @@ -11639,39 +11639,6 @@ _ACEOF
  4. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking uint32_t is 32 bits" >&5
  5. -$as_echo_n "checking uint32_t is 32 bits... " >&6; }
  6. -if test "$cross_compiling" = yes; then :
  7. - as_fn_error "could not compile program using uint32_t." "$LINENO" 5
  8. -else
  9. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  10. -/* end confdefs.h. */
  11. -
  12. -#ifdef HAVE_STDINT_H
  13. -# include <stdint.h>
  14. -#endif
  15. -#ifdef HAVE_INTTYPES_H
  16. -# include <inttypes.h>
  17. -#endif
  18. -main() {
  19. - uint32_t nr1 = (uint32_t)-1;
  20. - uint32_t nr2 = (uint32_t)0xffffffffUL;
  21. - if (sizeof(uint32_t) != 4 || nr1 != 0xffffffffUL || nr2 + 1 != 0) exit(1);
  22. - exit(0);
  23. -}
  24. -_ACEOF
  25. -if ac_fn_c_try_run "$LINENO"; then :
  26. - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
  27. -$as_echo "ok" >&6; }
  28. -else
  29. - as_fn_error "WRONG! uint32_t not defined correctly." "$LINENO" 5
  30. -fi
  31. -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  32. - conftest.$ac_objext conftest.beam conftest.$ac_ext
  33. -fi
  34. -
  35. -
  36. -
  37. bcopy_test_prog='
  38. #include "confdefs.h"
  39. #ifdef HAVE_STRING_H