diff options
author | Thomas Munro <tmunro@postgresql.org> | 2022-07-23 14:44:31 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2022-07-23 14:59:11 +1200 |
commit | a3b8d2a997ab6e8d982495753013c440b32929ba (patch) | |
tree | c8fff824f897dcad0c3d62f41e9881a567ada6c3 /src | |
parent | 0f39b70a6f3664036d527fb04ba709d363072a2e (diff) | |
download | postgresql-a3b8d2a997ab6e8d982495753013c440b32929ba.tar.gz postgresql-a3b8d2a997ab6e8d982495753013c440b32929ba.zip |
Remove configure probe for sys/tas.h.
The last reference to HAVE_SYS_TAS_H disappeared with commit 718aa43a.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 3 | ||||
-rw-r--r-- | src/tools/msvc/Solution.pm | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 86d0b1941bb..21e9283731b 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -640,9 +640,6 @@ /* Define to 1 if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H -/* Define to 1 if you have the <sys/tas.h> header file. */ -#undef HAVE_SYS_TAS_H - /* Define to 1 if you have the <sys/types.h> header file. */ #undef HAVE_SYS_TYPES_H diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 23296527aed..2f364ab1123 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -406,7 +406,6 @@ sub GenerateFiles HAVE_SYS_SIGNALFD_H => undef, HAVE_SYS_SOCKIO_H => undef, HAVE_SYS_STAT_H => 1, - HAVE_SYS_TAS_H => undef, HAVE_SYS_TYPES_H => 1, HAVE_SYS_UCRED_H => undef, HAVE_SYS_UIO_H => undef, |