diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2013-03-27 07:33:54 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2013-03-27 07:39:06 +0100 |
commit | 3e786028a31565a05a09b3cc36233f50688c7f8a (patch) | |
tree | 22556c29d10cf641cc33141b1353c6e18f27f685 | |
parent | 5da2b4b903308fe1cf18f2feae20e602d744fe9f (diff) |
postgresql-sdbc-impl: does not need these externals for MSVC
Hopefully.. blind fix for the build.
Change-Id: I3c59ceba4eee9eb9950332433045dcb6337bef49
-rw-r--r-- | connectivity/Library_postgresql-sdbc-impl.mk | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/connectivity/Library_postgresql-sdbc-impl.mk b/connectivity/Library_postgresql-sdbc-impl.mk index d733f01662ea..0a0e89344b7b 100644 --- a/connectivity/Library_postgresql-sdbc-impl.mk +++ b/connectivity/Library_postgresql-sdbc-impl.mk @@ -60,11 +60,13 @@ endif $(eval $(call gb_Library_use_externals,postgresql-sdbc-impl,\ boost_headers \ postgresql \ - openssl \ - openldap \ - nss3 \ - plc4 \ - ssl3 \ + $(if $(filter-out MSC,$(COM)), \ + openssl \ + openldap \ + nss3 \ + plc4 \ + ssl3 \ + ) \ )) ifneq ($(SYSTEM_POSTGRESQL),YES) |