diff --git a/build.sh b/build.sh index d6359e7..90bef53 100644 --- a/build.sh +++ b/build.sh @@ -98,12 +98,12 @@ if [ ! -f "$POSTGRESQL_DIR/$POSTGRESQL_OUT/bin/psql" ]; then # Configures make for libreadline7 on linux, without for Darwin if [ ! "$(uname -s)" == "Darwin" ]; then - exec_cmd "./configure --prefix=$(pwd)/$POSTGRESQL_OUT --with-libs=../$LIBREADLINE_DIR/out/lib --with-includes=../$LIBREADLINE_DIR/out/include" + exec_cmd "./configure --prefix=$(pwd)/$POSTGRESQL_OUT --with-libraries=$(pwd)/../$LIBREADLINE_DIR/out/lib --with-includes=$(pwd)/../$LIBREADLINE_DIR/out/include" + exec_cmd "make" else exec_cmd "./configure --prefix=$(pwd)/$POSTGRESQL_OUT" fi - exec_cmd "make --jobs=$JOBS" exec_cmd "make install" # Compiles the pgcrypto extension diff --git a/config.sh b/config.sh index 9c7e1ec..ec68045 100644 --- a/config.sh +++ b/config.sh @@ -46,9 +46,9 @@ NODE_URL="https://nodejs.org/download/release/v6.12.3/$NODE_FILE" NODE_OUT="compiled" NODE_CONFIG="" -POSTGRESQL_DIR="postgresql-9.6.6" +POSTGRESQL_DIR="postgresql-9.6.8" POSTGRESQL_FILE="$POSTGRESQL_DIR.tar.gz" -POSTGRESQL_URL="https://ftp.postgresql.org/pub/source/v9.6.6/$POSTGRESQL_FILE" +POSTGRESQL_URL="https://ftp.postgresql.org/pub/source/v9.6.8/$POSTGRESQL_FILE" POSTGRESQL_OUT="pgsql" SODIUM_DIR="libsodium-1.0.11"