Kaydet (Commit) f5501498 authored tarafından Fridrich Štrba's avatar Fridrich Štrba

Enable OpenSSL support in the internal libpq

üst 9ab205af
...@@ -151,6 +151,7 @@ SHL2STDLIBS= \ ...@@ -151,6 +151,7 @@ SHL2STDLIBS= \
$(CPPUHELPERLIB) \ $(CPPUHELPERLIB) \
$(SALLIB) \ $(SALLIB) \
$(SALHELPERLIB) \ $(SALHELPERLIB) \
$(OPENSSLLIB) \
$(POSTGRESQL_LIB) \ $(POSTGRESQL_LIB) \
$(LIBPQ_LINK) $(LIBPQ_LINK)
......
...@@ -52,17 +52,12 @@ CONFIGURE_DIR=. ...@@ -52,17 +52,12 @@ CONFIGURE_DIR=.
BUILD_DIR=src BUILD_DIR=src
CONFIGURE_ACTION = CONFIGURE_ACTION =
BUILD_ACTION = nmake -f win32.mak BUILD_ACTION = nmake -f win32.mak USE_SSL=1
.ELSE .ELSE
CONFIGURE_DIR=. CONFIGURE_DIR=.
BUILD_DIR=src/interfaces/libpq BUILD_DIR=src/interfaces/libpq
# TODO: CONFIGURE_ACTION = ./configure --without-readline --disable-shared --with-openssl
# --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
BUILD_ACTION = make -j$(GMAKE_MODULE_PARALLELISM) all-static-lib BUILD_ACTION = make -j$(GMAKE_MODULE_PARALLELISM) all-static-lib
.ENDIF .ENDIF
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment