diff options
Diffstat (limited to 'configh.in')
-rw-r--r-- | configh.in | 24 |
1 files changed, 21 insertions, 3 deletions
@@ -4,7 +4,7 @@ */ /* - * Copyright (C) 1995 the Free Software Foundation, Inc. + * Copyright (C) 1995, 96 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -66,6 +66,9 @@ /* Define if you don't have vprintf but do have _doprnt. */ #undef HAVE_DOPRNT +/* Define if you have a working `mmap' system call. */ +#undef HAVE_MMAP + /* Define if your struct stat has st_blksize. */ #undef HAVE_ST_BLKSIZE @@ -129,6 +132,12 @@ /* Define if you have the fmod function. */ #undef HAVE_FMOD +/* Define if you have the getpagesize function. */ +#undef HAVE_GETPAGESIZE + +/* Define if you have the madvise function. */ +#undef HAVE_MADVISE + /* Define if you have the memcmp function. */ #undef HAVE_MEMCMP @@ -138,8 +147,8 @@ /* Define if you have the memset function. */ #undef HAVE_MEMSET -/* Define if you have the random function. */ -#undef HAVE_RANDOM +/* Define if you have the setlocale function. */ +#undef HAVE_SETLOCALE /* Define if you have the strchr function. */ #undef HAVE_STRCHR @@ -162,9 +171,15 @@ /* Define if you have the tzset function. */ #undef HAVE_TZSET +/* Define if you have the valloc function. */ +#undef HAVE_VALLOC + /* Define if you have the <limits.h> header file. */ #undef HAVE_LIMITS_H +/* Define if you have the <locale.h> header file. */ +#undef HAVE_LOCALE_H + /* Define if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H @@ -186,4 +201,7 @@ /* Define if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H +/* Define if you have the m library (-lm). */ +#undef HAVE_LIBM + #include <custom.h> /* overrides for stuff autoconf can't deal with */ |