Changeset 579 for trunk/config.h.in


Ignore:
Timestamp:
May 14, 2023, 10:08:17 PM (16 months ago)
Author:
katerina
Message:

Fix for ticket #467 (memleak).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/config.h.in

    r576 r579  
    690690#undef HAVE_MEMMOVE
    691691
    692 /* Define to 1 if you have the <memory.h> header file. */
    693 #undef HAVE_MEMORY_H
    694 
    695692/* Define to 1 if you have the `memset' function. */
    696693#undef HAVE_MEMSET
     
    824821/* Define to 1 if you have the <stdint.h> header file. */
    825822#undef HAVE_STDINT_H
     823
     824/* Define to 1 if you have the <stdio.h> header file. */
     825#undef HAVE_STDIO_H
    826826
    827827/* Define to 1 if you have the <stdlib.h> header file. */
     
    926926#undef HAVE_SYS_SYSMACROS_H
    927927
     928/* Define to 1 if you have the <sys/time.h> header file. */
     929#undef HAVE_SYS_TIME_H
     930
    928931/* Define to 1 if you have the <sys/types.h> header file. */
    929932#undef HAVE_SYS_TYPES_H
     
    10701073#undef STAT_MACROS_BROKEN
    10711074
    1072 /* Define to 1 if you have the ANSI C header files. */
     1075/* Define to 1 if all of the C90 standard headers exist (not just the ones
     1076   required in a freestanding environment). This macro is provided for
     1077   backward compatibility; new code need not use it. */
    10731078#undef STDC_HEADERS
    10741079
     
    10821087#undef TIGER_OPT_ASM
    10831088
    1084 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
     1089/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. This
     1090   macro is obsolete. */
    10851091#undef TIME_WITH_SYS_TIME
    10861092
     
    11241130#endif
    11251131
    1126 /* Enable large inode numbers on Mac OS X 10.5.  */
    1127 #ifndef _DARWIN_USE_64_BIT_INODE
    1128 # define _DARWIN_USE_64_BIT_INODE 1
    1129 #endif
    1130 
    11311132/* Number of bits in a file offset, on hosts where this is settable. */
    11321133#undef _FILE_OFFSET_BITS
     
    11521153/* Define to the equivalent of the C99 'restrict' keyword, or to
    11531154   nothing if this is not supported.  Do not define if restrict is
    1154    supported directly.  */
     1155   supported only directly.  */
    11551156#undef restrict
    1156 /* Work around a bug in Sun C++: it does not support _Restrict or
    1157    __restrict__, even though the corresponding Sun C compiler ends up with
    1158    "#define restrict _Restrict" or "#define restrict __restrict__" in the
    1159    previous line.  Perhaps some future version of Sun C++ will work with
    1160    restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */
    1161 #if defined __SUNPRO_CC && !defined __RESTRICT
     1157/* Work around a bug in older versions of Sun C++, which did not
     1158   #define __restrict__ or support _Restrict or __restrict__
     1159   even though the corresponding Sun C compiler ended up with
     1160   "#define restrict _Restrict" or "#define restrict __restrict__"
     1161   in the previous line.  This workaround can be removed once
     1162   we assume Oracle Developer Studio 12.5 (2016) or later.  */
     1163#if defined __SUNPRO_CC && !defined __RESTRICT && !defined __restrict__
    11621164# define _Restrict
    11631165# define __restrict__
Note: See TracChangeset for help on using the changeset viewer.