Show
Ignore:
Timestamp:
11/17/09 20:09:16 (4 months ago)
Author:
cristy
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • WizardsToolkit/trunk/config/config.h.in

    r511 r602  
    419419/* Define to the one symbol short name of this package. */ 
    420420#undef PACKAGE_TARNAME 
     421 
     422/* Define to the home page for this package. */ 
     423#undef PACKAGE_URL 
    421424 
    422425/* Define to the version of this package. */ 
     
    574577   supported directly.  */ 
    575578#undef restrict 
    576 /* Work around a bug in Sun C++: it does not support _Restrict, even 
    577    though the corresponding Sun C compiler does, which causes 
    578    "#define restrict _Restrict" in the previous line.  Perhaps some future 
    579    version of Sun C++ will work with _Restrict; if so, it'll probably 
    580    define __RESTRICT, just as Sun 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.  */ 
    581584#if defined __SUNPRO_CC && !defined __RESTRICT 
    582585# define _Restrict 
     586# define __restrict__ 
    583587#endif 
    584588