diff options
| author | Tom Lane | 2018-11-07 21:41:42 +0000 |
|---|---|---|
| committer | Tom Lane | 2018-11-07 21:41:42 +0000 |
| commit | c3e6d5d38699812e047270a711be1926b7f6f396 (patch) | |
| tree | e3b8adb6e801c51486bac5baf43d808791629102 /src/include | |
| parent | 54ad7282fe7ad80a15533546d3b0a2be2e19e3f6 (diff) | |
Fix inadequate autoconfiscation of copyfile() usage.
Per buildfarm, HAVE_COPYFILE is not the same thing as HAVE_COPYFILE_H.
Add the extra configure test.
Diffstat (limited to 'src/include')
| -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 b1f709358e4..6ac75cd02cc 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -117,6 +117,9 @@ /* Define to 1 if you have the `copyfile' function. */ #undef HAVE_COPYFILE +/* Define to 1 if you have the <copyfile.h> header file. */ +#undef HAVE_COPYFILE_H + /* Define to 1 if you have the <crtdefs.h> header file. */ #undef HAVE_CRTDEFS_H |
