Setting the additional include path for host-build of ecpg is no longer required and started breaking the build (PostgeSQL BUG-14033), remove it. Also, pgsql-server no longer requires shadow-su since procd can take care of starting it running under the appropriate user. Moving the dependency to pgsql-cli makes sense as the 'su' command is still needed to boot-strap a new data directory and also commonly used for other administration tasks. However, in that way the CLI and shadow-su can be removed during production once pgsql-server has been setup. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
11 lines
435 B
Diff
11 lines
435 B
Diff
--- a/configure.in
|
|
+++ b/configure.in
|
|
@@ -25,7 +25,7 @@ recommended. You can remove the check f
|
|
your responsibility whether the result works or not.])])
|
|
AC_COPYRIGHT([Copyright (c) 1996-2015, PostgreSQL Global Development Group])
|
|
AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c])
|
|
-AC_CONFIG_AUX_DIR(config)
|
|
+AC_CONFIG_AUX_DIR([config])
|
|
AC_PREFIX_DEFAULT(/usr/local/pgsql)
|
|
AC_SUBST(configure_args, [$ac_configure_args])
|
|
|