diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-11-06 10:57:51 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-11-06 10:57:51 -0500 |
commit | 8f623bedfb4fee5a125b25720e5451379cf26ff9 (patch) | |
tree | 40164eb7aa402426daf89816e5d92055b3053cb5 /src | |
parent | 9e12fb02b7ec27ff3707a0a7c31f2421ba62c9df (diff) | |
download | postgresql-8f623bedfb4fee5a125b25720e5451379cf26ff9.tar.gz postgresql-8f623bedfb4fee5a125b25720e5451379cf26ff9.zip |
Remove useless symbol from Makefile.global.
I added HAVE_IPV6 to Makefile.global way back in commit 7703e55c3
so that we could transmit its value to the shell-script version of
initdb. Since initdb was rewritten in C, it's been finding that
out from pg_config.h instead, so this is useless. Keeping it here
just wastes configure and make cycles, plus it's a potential
two-sources-of-truth problem.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 218c65a7883..956fd274cd8 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -497,9 +497,6 @@ host_tuple = @host@ host_os = @host_os@ host_cpu = @host_cpu@ -# Make HAVE_IPV6 available for initdb script creation -HAVE_IPV6= @HAVE_IPV6@ - # This is mainly for use on FreeBSD, where we have both a.out and elf # systems now. May be applicable to other systems to? ELF_SYSTEM= @ELF_SYS@ |