diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-02-24 14:47:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-02-24 14:47:08 +0100 |
commit | 25153e127df4b4540692aa4682163b567808e002 (patch) | |
tree | 3ef29e0720d21053b7f486590d18f09e8c261dea /src/configure.in | |
parent | f4d7f944baf3e6aaf8a17e9b6fae54e96d121be5 (diff) | |
download | vim-git-25153e127df4b4540692aa4682163b567808e002.tar.gz |
updated for version 7.2.371v7.2.371
Problem: Build problems on Tandem NonStop.
Solution: A few changes to #ifdefs (Joachim Schmitz)
Diffstat (limited to 'src/configure.in')
-rw-r--r-- | src/configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/configure.in b/src/configure.in index b7187996b..177fa885c 100644 --- a/src/configure.in +++ b/src/configure.in @@ -2642,14 +2642,16 @@ if test "x$vim_cv_getcwd_broken" = "xyes" ; then AC_DEFINE(BAD_GETCWD) fi -dnl Check for functions in one big call, to reduce the size of configure -AC_CHECK_FUNCS(bcmp fchdir fchown fseeko fsync ftello getcwd getpseudotty \ +dnl Check for functions in one big call, to reduce the size of configure. +dnl Can only be used for functions that do not require any include. +AC_CHECK_FUNCS(bcmp fchdir fchown fsync getcwd getpseudotty \ getpwnam getpwuid getrlimit gettimeofday getwd lstat memcmp \ memset mkdtemp nanosleep opendir putenv qsort readlink select setenv \ setpgid setsid sigaltstack sigstack sigset sigsetjmp sigaction \ sigvec strcasecmp strerror strftime stricmp strncasecmp \ strnicmp strpbrk strtol tgetent towlower towupper iswupper \ usleep utime utimes) +AC_FUNC_FSEEKO dnl fstatfs() can take 2 to 4 arguments, try to use st_blksize if possible AC_MSG_CHECKING(for st_blksize) |