diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-27 23:52:44 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-27 23:59:08 +0200 |
commit | f58f10fc89e19d182b5a415bb69af5ecc7de080a (patch) | |
tree | fa2a928ddef65a7793acfbd7b2feb700889eb5ac /external/firebird/ExternalProject_firebird.mk | |
parent | 18110ca3bdc9542e28480d5719f33c429b325402 (diff) |
firebird: --enable-debug breaks the build with MSVC
With the 2.5.4 upgrade somehow this fails to link fbintl.lib with
unresolved symbols.
Debugging is overrated anyway, let's just disable that for now.
Change-Id: I265c705c10ca7c70baa18232f6f740120d6b397e
Diffstat (limited to 'external/firebird/ExternalProject_firebird.mk')
-rw-r--r-- | external/firebird/ExternalProject_firebird.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/firebird/ExternalProject_firebird.mk b/external/firebird/ExternalProject_firebird.mk index f1dbb2fc7ba8..f24d0f75dedc 100644 --- a/external/firebird/ExternalProject_firebird.mk +++ b/external/firebird/ExternalProject_firebird.mk @@ -50,7 +50,7 @@ $(call gb_ExternalProject_get_state_target,firebird,build): --without-editline \ --disable-superserver \ --with-system-icu --without-fbsample --without-fbsample-db \ - $(if $(ENABLE_DEBUG),--enable-debug) \ + $(if $(filter-out MSC,$(COM)),$(if $(ENABLE_DEBUG),--enable-debug)) \ $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ $(if $(DISABLE_DYNLOADING), \ --enable-static --disable-shared \ |