mirror of https://github.com/citusdata/citus.git
Do not use security flags by default (#4770)
(cherry picked from commit 697bbbd3c6
)
Conflicts:
configure
release-9.2
parent
1d5c2d88de
commit
ccb63a27cf
|
@ -1338,8 +1338,7 @@ Optional Packages:
|
||||||
--with-reports-hostname=HOSTNAME
|
--with-reports-hostname=HOSTNAME
|
||||||
Use HOSTNAME as hostname for statistics collection
|
Use HOSTNAME as hostname for statistics collection
|
||||||
and update checks
|
and update checks
|
||||||
--without-security-flags
|
--with-security-flags use security flags
|
||||||
do not use security flags
|
|
||||||
|
|
||||||
Some influential environment variables:
|
Some influential environment variables:
|
||||||
PG_CONFIG Location to find pg_config for target PostgreSQL instalation
|
PG_CONFIG Location to find pg_config for target PostgreSQL instalation
|
||||||
|
@ -4547,7 +4546,7 @@ if test "${with_security_flags+set}" = set; then :
|
||||||
esac
|
esac
|
||||||
|
|
||||||
else
|
else
|
||||||
with_security_flags=yes
|
with_security_flags=no
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -217,8 +217,8 @@ AC_DEFINE_UNQUOTED(REPORTS_BASE_URL, "$REPORTS_BASE_URL",
|
||||||
[Base URL for statistics collection and update checks])
|
[Base URL for statistics collection and update checks])
|
||||||
|
|
||||||
|
|
||||||
PGAC_ARG_BOOL(with, security-flags, yes,
|
PGAC_ARG_BOOL(with, security-flags, no,
|
||||||
[do not use security flags])
|
[use security flags])
|
||||||
AC_SUBST(with_security_flags)
|
AC_SUBST(with_security_flags)
|
||||||
|
|
||||||
if test "$with_security_flags" = yes; then
|
if test "$with_security_flags" = yes; then
|
||||||
|
|
Loading…
Reference in New Issue