diff options
author | Rick Kirian <rkirian@asu.edu> | 2011-03-25 16:24:19 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:23 +0100 |
commit | c28092f7908dc88d1e8c4fe3efa3924fbe192051 (patch) | |
tree | cc773c3de69f27b73e6e77eba354a92c08012217 /config.h.in | |
parent | 1d7c4d838224b4ac7e61453454b5164d9878211a (diff) |
calibrate_detector.c: work in progress
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/config.h.in b/config.h.in index ea2b3689..f84d0878 100644 --- a/config.h.in +++ b/config.h.in @@ -190,9 +190,6 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME -/* Define to the home page for this package. */ -#undef PACKAGE_URL - /* Define to the version of this package. */ #undef PACKAGE_VERSION @@ -260,14 +257,13 @@ nothing if this is not supported. Do not define if restrict is supported directly. */ #undef restrict -/* Work around a bug in Sun C++: it does not support _Restrict or - __restrict__, even though the corresponding Sun C compiler ends up with - "#define restrict _Restrict" or "#define restrict __restrict__" in the - previous line. Perhaps some future version of Sun C++ will work with - restrict; if so, hopefully it defines __RESTRICT like Sun C does. */ +/* Work around a bug in Sun C++: it does not support _Restrict, even + though the corresponding Sun C compiler does, which causes + "#define restrict _Restrict" in the previous line. Perhaps some future + version of Sun C++ will work with _Restrict; if so, it'll probably + define __RESTRICT, just as Sun C does. */ #if defined __SUNPRO_CC && !defined __RESTRICT # define _Restrict -# define __restrict__ #endif /* Define as a marker that can be attached to declarations that might not |