diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-05-13 22:07:43 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-05-13 22:07:43 +0000 |
commit | 382ff21203ae1c13c2c93a483b098608f35a7251 (patch) | |
tree | 494ad266440bc7536fcf9e4225f92515323ae8d7 /src | |
parent | 2a73ee59dbdeb7bf05ff1b3fadb28992245904e0 (diff) | |
download | postgresql-382ff21203ae1c13c2c93a483b098608f35a7251.tar.gz postgresql-382ff21203ae1c13c2c93a483b098608f35a7251.zip |
Fix up lame idea of not using autoconf to determine if platform has scandir().
Should fix buildfarm failures.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 684aed4a9f4..a54cae309b6 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -409,6 +409,9 @@ /* Define to 1 if you have the `rl_filename_completion_function' function. */ #undef HAVE_RL_FILENAME_COMPLETION_FUNCTION +/* Define to 1 if you have the `scandir' function. */ +#undef HAVE_SCANDIR + /* Define to 1 if you have the <security/pam_appl.h> header file. */ #undef HAVE_SECURITY_PAM_APPL_H |