From bee80a2a5762ab483b64b6d9b38d39ed3ffeca1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fridrich=20=C5=A0trba?= Date: Sun, 11 Dec 2011 12:24:38 +0100 Subject: [PATCH] Make internal pgsql build on mac and make it default for release --- distro-configs/LibreOfficeMacOSX.conf | 2 ++ postgresql/makefile.mk | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/distro-configs/LibreOfficeMacOSX.conf b/distro-configs/LibreOfficeMacOSX.conf index 3d22aa919449..59ea95bde9ba 100644 --- a/distro-configs/LibreOfficeMacOSX.conf +++ b/distro-configs/LibreOfficeMacOSX.conf @@ -10,4 +10,6 @@ --enable-ext-scripting-beanshell --enable-ext-scripting-javascript --enable-ext-nlpsolver +--enable-ext-postgresql-sdbc --enable-extension-integration +--without-system-postgresql diff --git a/postgresql/makefile.mk b/postgresql/makefile.mk index 2aae5db73e70..29797791b254 100644 --- a/postgresql/makefile.mk +++ b/postgresql/makefile.mk @@ -63,7 +63,7 @@ BUILD_DIR=src/interfaces/libpq # --sysconfdir: config files. Ideally, we would like that to be "the same as the platform default", # but that's quite some guessing work. CONFIGURE_ACTION = ./configure --without-readline --disable-shared -BUILD_ACTION = make -j$(GMAKE_MODULE_PARALLELISM) +BUILD_ACTION = make -j$(GMAKE_MODULE_PARALLELISM) all-static-lib .ENDIF # --- Targets ------------------------------------------------------