520082782d
* Protect against indirect security threats caused by index functions changing session-local state * Reject SSL certificates containing an embedded null byte in the common name (CN) field * Fix hash index corruption * Fix possible crash during backend-startup-time cache initialization * Avoid crash on empty thesaurus dictionary * Prevent signals from interrupting VACUUM at unsafe times * Fix possible crash due to integer overflow in hash table size calculation * Fix crash if a DROP is attempted on an internally-dependent object * Fix very rare crash in inet/cidr comparisons * Ensure that shared tuple-level locks held by prepared transactions are not ignored * Fix premature drop of temporary files used for a cursor that is accessed within a subtransaction * Fix memory leak in syslogger process when rotating to a new CSV logfile * Fix memory leak in postmaster when re-parsing "pg_hba.conf" * Fix Windows permission-downgrade logic * Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries * Fix bug with a WITH RECURSIVE query immediately inside another one * Fix concurrency bug in hash indexes * Fix incorrect logic for GiST index page splits, when the split depends on a non-first column of the index * Fix wrong search results for a multi-column GIN index with fastupdate enabled * More...
98 lines
3 KiB
Makefile
98 lines
3 KiB
Makefile
# $NetBSD: Makefile,v 1.3 2009/12/16 13:30:54 adam Exp $
|
|
|
|
PKGNAME= postgresql84-client-${BASE_VERS}
|
|
COMMENT= PostgreSQL database client programs
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../databases/postgresql84/Makefile.common"
|
|
|
|
USE_TOOLS+= gzip tar
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_ARGS+= --with-openssl
|
|
CONFIGURE_ARGS+= --with-readline
|
|
CONFIGURE_ARGS+= --with-zlib
|
|
|
|
# 1. The thread-safety test in ${WRSRC}/src/tools/thread does not pass on
|
|
# NetBSD earler than 4.0 or DragonFly.
|
|
# 2. configure with --enable-thread-safety fails on OpenBSD.
|
|
#
|
|
.if (${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[0-3].*)) || \
|
|
${OPSYS} == "DragonFly" || ${OPSYS} == "OpenBSD"
|
|
PGSQL_THREAD_SAFETY?= no
|
|
.endif
|
|
PGSQL_THREAD_SAFETY?= yes
|
|
BUILD_DEFS+= PGSQL_THREAD_SAFETY
|
|
|
|
.if !empty(PGSQL_THREAD_SAFETY:M[yY][eE][sS])
|
|
. include "../../mk/pthread.buildlink3.mk"
|
|
. if (${PTHREAD_TYPE} == "native")
|
|
CONFIGURE_ARGS+= --enable-thread-safety
|
|
. endif
|
|
.endif
|
|
|
|
LIBS.SunOS+= -lintl
|
|
|
|
INSTALL_DIRS= src/include
|
|
INSTALL_DIRS+= src/interfaces
|
|
INSTALL_DIRS+= src/bin
|
|
INSTALL_DIRS+= src/port
|
|
INSTALL_DIRS+= doc
|
|
|
|
BUILD_DIRS= ${INSTALL_DIRS}
|
|
|
|
# Without this, the Darwin build fails (related to -bundle_loader).
|
|
BUILD_DIRS+= src/backend
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql84-client
|
|
.include "../../databases/postgresql84/options.mk"
|
|
|
|
.for _file_ in pg_service.conf psqlrc
|
|
CONF_FILES+= ${PG_DATA_DIR}/${_file_}.sample ${PG_ETC_DIR}/${_file_}
|
|
.endfor
|
|
|
|
# XXX work around core dumps with the native libedit
|
|
USE_GNU_READLINE= yes
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
|
|
SUBST_CLASSES+= pgxs
|
|
SUBST_STAGE.pgxs= post-build
|
|
SUBST_MESSAGE.pgxs= Fixing workdir tools references in pgxs Makefile
|
|
SUBST_FILES.pgxs= src/Makefile.global
|
|
SUBST_SED.pgxs= -e 's,${WRKDIR}/.tools,${PREFIX},'
|
|
SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper,${PREFIX},'
|
|
SUBST_SED.pgxs+= -e 's,${WRKSRC},/dev/null,'
|
|
|
|
INSTALLATION_DIRS+= ${PG_SUBPREFIX}lib/postgresql/pgxs
|
|
INSTALLATION_DIRS+= ${PG_SUBPREFIX}lib/postgresql/pgxs/config
|
|
INSTALLATION_DIRS+= ${PG_SUBPREFIX}lib/postgresql/pgxs/src
|
|
INSTALLATION_DIRS+= ${PG_SUBPREFIX}lib/postgresql/pgxs/src/makefiles
|
|
|
|
DEST_PG_PGXS= ${DESTDIR}${PG_PREFIX}/lib/postgresql/pgxs
|
|
PG_PGXS_FILES= config/install-sh config/mkinstalldirs
|
|
PG_PGXS_FILES+= src/makefiles/pgxs.mk src/Makefile.global
|
|
PG_PGXS_FILES+= src/Makefile.port src/Makefile.shlib
|
|
PG_PGXS_FILES+= src/nls-global.mk
|
|
|
|
# On Solaris, avoid conflicts between "${SSLBASE}/include/openssl/des.h"
|
|
# and "/usr/include/crypt.h" -- we want the definitions in the former.
|
|
.if ${OPSYS} == "SunOS"
|
|
post-wrapper:
|
|
touch ${BUILDLINK_DIR}/include/crypt.h
|
|
.endif
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/doc; for file in \
|
|
FAQ* KNOWN_BUGS MISSING_FEATURES README.* TODO \
|
|
bug.template; \
|
|
do \
|
|
${INSTALL_DATA} $$file ${DESTDIR}${PG_DOC_DIR}/$$file; \
|
|
done; \
|
|
for file in ${PG_PGXS_FILES}; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$$file ${DEST_PG_PGXS}/$$file;\
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|