diff options
author | Bruce Momjian | 2011-11-18 02:59:04 +0000 |
---|---|---|
committer | Bruce Momjian | 2011-11-18 02:59:49 +0000 |
commit | 7012b5edb7f12be9f9d2816bb64fcb80515cc18c (patch) | |
tree | 6cf5ecf4711ed588752a6ea353c2ae6e75a16dc9 /configure.in | |
parent | fc6d1006bda783cc002c61a5f072905849dbde4b (diff) |
Remove scandir() requirement in pg_upgrade; instead just use readdir()
--- we were not using the scandir pattern filtering anyway. This also
removes the scandir requirement in configure.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 5dc669f545a..5591b93e758 100644 --- a/configure.in +++ b/configure.in @@ -1193,7 +1193,7 @@ PGAC_VAR_INT_TIMEZONE AC_FUNC_ACCEPT_ARGTYPES PGAC_FUNC_GETTIMEOFDAY_1ARG -AC_CHECK_FUNCS([cbrt dlopen fcvt fdatasync getifaddrs getpeerucred getrlimit memmove poll pstat readlink scandir setproctitle setsid sigprocmask symlink sysconf towlower utime utimes waitpid wcstombs wcstombs_l]) +AC_CHECK_FUNCS([cbrt dlopen fcvt fdatasync getifaddrs getpeerucred getrlimit memmove poll pstat readlink setproctitle setsid sigprocmask symlink sysconf towlower utime utimes waitpid wcstombs wcstombs_l]) AC_REPLACE_FUNCS(fseeko) case $host_os in |