Skip to content

Commit

Permalink
Merge pull request #161 from GrahamCampbell/postgres-16-2
Browse files Browse the repository at this point in the history
postgres 16.2
  • Loading branch information
mnapoli authored Feb 8, 2024
2 parents 641e8ea + e5b52ac commit a0acfcc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions php-80/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ RUN make install
# - OpenSSL
# Needed by:
# - php
ENV VERSION_POSTGRES=15.5
ENV VERSION_POSTGRES=16.2
ENV POSTGRES_BUILD_DIR=${BUILD_DIR}/postgres
RUN set -xe; \
mkdir -p ${POSTGRES_BUILD_DIR}/bin; \
Expand All @@ -346,7 +346,7 @@ WORKDIR ${POSTGRES_BUILD_DIR}/
RUN CFLAGS="" \
CPPFLAGS="-I${INSTALL_DIR}/include -I/usr/include" \
LDFLAGS="-L${INSTALL_DIR}/lib64 -L${INSTALL_DIR}/lib" \
./configure --prefix=${INSTALL_DIR} --with-openssl --without-readline
./configure --prefix=${INSTALL_DIR} --with-openssl --without-icu --without-readline
RUN cd ${POSTGRES_BUILD_DIR}/src/interfaces/libpq && make && make install
RUN cd ${POSTGRES_BUILD_DIR}/src/bin/pg_config && make && make install
RUN cd ${POSTGRES_BUILD_DIR}/src/backend && make generated-headers
Expand Down
4 changes: 2 additions & 2 deletions php-81/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ RUN make install
# - OpenSSL
# Needed by:
# - php
ENV VERSION_POSTGRES=15.5
ENV VERSION_POSTGRES=16.2
ENV POSTGRES_BUILD_DIR=${BUILD_DIR}/postgres
RUN set -xe; \
mkdir -p ${POSTGRES_BUILD_DIR}/bin; \
Expand All @@ -347,7 +347,7 @@ WORKDIR ${POSTGRES_BUILD_DIR}/
RUN CFLAGS="" \
CPPFLAGS="-I${INSTALL_DIR}/include -I/usr/include" \
LDFLAGS="-L${INSTALL_DIR}/lib64 -L${INSTALL_DIR}/lib" \
./configure --prefix=${INSTALL_DIR} --with-openssl --without-readline
./configure --prefix=${INSTALL_DIR} --with-openssl --without-icu --without-readline
RUN cd ${POSTGRES_BUILD_DIR}/src/interfaces/libpq && make && make install
RUN cd ${POSTGRES_BUILD_DIR}/src/bin/pg_config && make && make install
RUN cd ${POSTGRES_BUILD_DIR}/src/backend && make generated-headers
Expand Down
4 changes: 2 additions & 2 deletions php-82/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ RUN make install
# - OpenSSL
# Needed by:
# - php
ENV VERSION_POSTGRES=15.5
ENV VERSION_POSTGRES=16.2
ENV POSTGRES_BUILD_DIR=${BUILD_DIR}/postgres
RUN set -xe; \
mkdir -p ${POSTGRES_BUILD_DIR}/bin; \
Expand All @@ -347,7 +347,7 @@ WORKDIR ${POSTGRES_BUILD_DIR}/
RUN CFLAGS="" \
CPPFLAGS="-I${INSTALL_DIR}/include -I/usr/include" \
LDFLAGS="-L${INSTALL_DIR}/lib64 -L${INSTALL_DIR}/lib" \
./configure --prefix=${INSTALL_DIR} --with-openssl --without-readline
./configure --prefix=${INSTALL_DIR} --with-openssl --without-icu --without-readline
RUN cd ${POSTGRES_BUILD_DIR}/src/interfaces/libpq && make && make install
RUN cd ${POSTGRES_BUILD_DIR}/src/bin/pg_config && make && make install
RUN cd ${POSTGRES_BUILD_DIR}/src/backend && make generated-headers
Expand Down
4 changes: 2 additions & 2 deletions php-83/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ RUN make install
# - OpenSSL
# Needed by:
# - php
ENV VERSION_POSTGRES=15.5
ENV VERSION_POSTGRES=16.2
ENV POSTGRES_BUILD_DIR=${BUILD_DIR}/postgres
RUN set -xe; \
mkdir -p ${POSTGRES_BUILD_DIR}/bin; \
Expand All @@ -347,7 +347,7 @@ WORKDIR ${POSTGRES_BUILD_DIR}/
RUN CFLAGS="" \
CPPFLAGS="-I${INSTALL_DIR}/include -I/usr/include" \
LDFLAGS="-L${INSTALL_DIR}/lib64 -L${INSTALL_DIR}/lib" \
./configure --prefix=${INSTALL_DIR} --with-openssl --without-readline
./configure --prefix=${INSTALL_DIR} --with-openssl --without-icu --without-readline
RUN cd ${POSTGRES_BUILD_DIR}/src/interfaces/libpq && make && make install
RUN cd ${POSTGRES_BUILD_DIR}/src/bin/pg_config && make && make install
RUN cd ${POSTGRES_BUILD_DIR}/src/backend && make generated-headers
Expand Down

0 comments on commit a0acfcc

Please sign in to comment.