patch-configh_in 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. --- gawk-3.1.7.orig/configh.in 2009-07-21 21:30:16.000000000 +0200
  2. +++ gawk-3.1.7/configh.in 2010-02-23 21:33:27.689776531 +0100
  3. @@ -227,10 +227,10 @@
  4. /* Define to 1 if you have the `strtoul' function. */
  5. #undef HAVE_STRTOUL
  6. -/* Define to 1 if `st_blksize' is member of `struct stat'. */
  7. +/* Define to 1 if `struct stat' is a member of `st_blksize'. */
  8. #undef HAVE_STRUCT_STAT_ST_BLKSIZE
  9. -/* Define to 1 if `tm_zone' is member of `struct tm'. */
  10. +/* Define to 1 if `struct tm' is a member of `tm_zone'. */
  11. #undef HAVE_STRUCT_TM_TM_ZONE
  12. /* Define to 1 if your `struct stat' has `st_blksize'. Deprecated, use
  13. @@ -345,6 +345,9 @@
  14. /* Define to the one symbol short name of this package. */
  15. #undef PACKAGE_TARNAME
  16. +/* Define to the home page for this package. */
  17. +#undef PACKAGE_URL
  18. +
  19. /* Define to the version of this package. */
  20. #undef PACKAGE_VERSION
  21. @@ -452,13 +455,14 @@
  22. nothing if this is not supported. Do not define if restrict is
  23. supported directly. */
  24. #undef restrict
  25. -/* Work around a bug in Sun C++: it does not support _Restrict, even
  26. - though the corresponding Sun C compiler does, which causes
  27. - "#define restrict _Restrict" in the previous line. Perhaps some future
  28. - version of Sun C++ will work with _Restrict; if so, it'll probably
  29. - define __RESTRICT, just as Sun C does. */
  30. +/* Work around a bug in Sun C++: it does not support _Restrict or
  31. + __restrict__, even though the corresponding Sun C compiler ends up with
  32. + "#define restrict _Restrict" or "#define restrict __restrict__" in the
  33. + previous line. Perhaps some future version of Sun C++ will work with
  34. + restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
  35. #if defined __SUNPRO_CC && !defined __RESTRICT
  36. # define _Restrict
  37. +# define __restrict__
  38. #endif
  39. /* Define to `unsigned int' if <sys/types.h> does not define. */