diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-12-12 10:16:32 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-12-12 10:17:06 +0100 |
commit | f5501498eb4dae84146b8ad7372656bfe4b6ea35 (patch) | |
tree | 3a88ec13c82beacbfa709ea2331572fe2ef445fe /postgresql | |
parent | 9ab205afe55b2121fbcd1b1cae651f5be839cf97 (diff) |
Enable OpenSSL support in the internal libpq
Diffstat (limited to 'postgresql')
-rw-r--r-- | postgresql/makefile.mk | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/postgresql/makefile.mk b/postgresql/makefile.mk index 29797791b254..898471bbfb13 100644 --- a/postgresql/makefile.mk +++ b/postgresql/makefile.mk @@ -52,17 +52,12 @@ CONFIGURE_DIR=. BUILD_DIR=src CONFIGURE_ACTION = -BUILD_ACTION = nmake -f win32.mak +BUILD_ACTION = nmake -f win32.mak USE_SSL=1 .ELSE CONFIGURE_DIR=. BUILD_DIR=src/interfaces/libpq -# TODO: -# --datarootdir changes where libpq expects internationalisation of its messages -# (which we don't install anyway for now...) -# --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 +CONFIGURE_ACTION = ./configure --without-readline --disable-shared --with-openssl BUILD_ACTION = make -j$(GMAKE_MODULE_PARALLELISM) all-static-lib .ENDIF |