Changeset 602 for WizardsToolkit/trunk/config/config.h.in
- Timestamp:
- 11/17/09 20:09:16 (4 months ago)
- Files:
-
- 1 modified
-
WizardsToolkit/trunk/config/config.h.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
WizardsToolkit/trunk/config/config.h.in
r511 r602 419 419 /* Define to the one symbol short name of this package. */ 420 420 #undef PACKAGE_TARNAME 421 422 /* Define to the home page for this package. */ 423 #undef PACKAGE_URL 421 424 422 425 /* Define to the version of this package. */ … … 574 577 supported directly. */ 575 578 #undef restrict 576 /* Work around a bug in Sun C++: it does not support _Restrict , even577 though the corresponding Sun C compiler does, which causes578 "#define restrict _Restrict" in the previous line. Perhaps some future579 version of Sun C++ will work with _Restrict; if so, it'll probably580 define __RESTRICT, just asSun C does. */579 /* Work around a bug in Sun C++: it does not support _Restrict or 580 __restrict__, even though the corresponding Sun C compiler ends up with 581 "#define restrict _Restrict" or "#define restrict __restrict__" in the 582 previous line. Perhaps some future version of Sun C++ will work with 583 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */ 581 584 #if defined __SUNPRO_CC && !defined __RESTRICT 582 585 # define _Restrict 586 # define __restrict__ 583 587 #endif 584 588
