Kaydet (Commit) da16857f authored tarafından Tamas Bunth's avatar Tamas Bunth Kaydeden (comit) Tamás Bunth

Build mysql_jdbc library even when building..

.. without java

Change-Id: Id44ef2d94992423a12b32234822e8ed3f5a48299
Reviewed-on: https://gerrit.libreoffice.org/63889
Tested-by: Jenkins
Reviewed-by: 's avatarTamás Bunth <btomi96@gmail.com>
üst 796cbe6e
...@@ -404,7 +404,7 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \ ...@@ -404,7 +404,7 @@ $(eval $(call gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
msfilter \ msfilter \
$(call gb_Helper_optional,SCRIPTING,msforms) \ $(call gb_Helper_optional,SCRIPTING,msforms) \
mtfrenderer \ mtfrenderer \
$(if $(ENABLE_JAVA),mysql_jdbc) \ $(call gb_Helper_optional,DBCONNECTIVITY,mysql_jdbc) \
$(call gb_Helper_optional,DBCONNECTIVITY,mysqlc) \ $(call gb_Helper_optional,DBCONNECTIVITY,mysqlc) \
numbertext \ numbertext \
odbc \ odbc \
......
...@@ -20,6 +20,7 @@ $(eval $(call gb_Module_add_targets,connectivity,\ ...@@ -20,6 +20,7 @@ $(eval $(call gb_Module_add_targets,connectivity,\
Configuration_calc \ Configuration_calc \
Configuration_dbase \ Configuration_dbase \
Configuration_flat \ Configuration_flat \
Configuration_mysql_jdbc \
Configuration_odbc \ Configuration_odbc \
Configuration_writer \ Configuration_writer \
Library_calc \ Library_calc \
...@@ -28,6 +29,7 @@ $(eval $(call gb_Module_add_targets,connectivity,\ ...@@ -28,6 +29,7 @@ $(eval $(call gb_Module_add_targets,connectivity,\
Library_file \ Library_file \
Library_flat \ Library_flat \
$(if $(filter ANDROID iOS,$(OS)),,Library_odbc) \ $(if $(filter ANDROID iOS,$(OS)),,Library_odbc) \
Library_mysql_jdbc \
Library_sdbc2 \ Library_sdbc2 \
Library_writer \ Library_writer \
)) ))
...@@ -40,8 +42,6 @@ ifneq ($(ENABLE_JAVA),) ...@@ -40,8 +42,6 @@ ifneq ($(ENABLE_JAVA),)
$(eval $(call gb_Module_add_targets,connectivity,\ $(eval $(call gb_Module_add_targets,connectivity,\
Configuration_hsqldb \ Configuration_hsqldb \
Configuration_jdbc \ Configuration_jdbc \
Configuration_mysql_jdbc \
Library_mysql_jdbc \
Jar_sdbc_hsqldb \ Jar_sdbc_hsqldb \
Library_hsqldb \ Library_hsqldb \
Library_jdbc \ Library_jdbc \
......
...@@ -331,9 +331,8 @@ endif ...@@ -331,9 +331,8 @@ endif
ifeq ($(ENABLE_JAVA),TRUE) ifeq ($(ENABLE_JAVA),TRUE)
postprocess_FILES_main += \ postprocess_FILES_main += \
$(call gb_XcuModuleTarget_get_target,connectivity/registry/hsqldb)/org/openoffice/Office/DataAccess/Drivers-hsqldb.xcu \ $(call gb_XcuModuleTarget_get_target,connectivity/registry/hsqldb)/org/openoffice/Office/DataAccess/Drivers-hsqldb.xcu \
$(call gb_XcuModuleTarget_get_target,connectivity/registry/jdbc)/org/openoffice/Office/DataAccess/Drivers-jdbc.xcu \ $(call gb_XcuModuleTarget_get_target,connectivity/registry/jdbc)/org/openoffice/Office/DataAccess/Drivers-jdbc.xcu
$(call gb_XcuModuleTarget_get_target,connectivity/registry/mysql_jdbc)/org/openoffice/Office/DataAccess/Drivers-mysql_jdbc.xcu postprocess_DRIVERS += hsqldb jdbc
postprocess_DRIVERS += hsqldb jdbc mysql_jdbc
endif endif
ifeq ($(ENABLE_FIREBIRD_SDBC),TRUE) ifeq ($(ENABLE_FIREBIRD_SDBC),TRUE)
postprocess_FILES_main += \ postprocess_FILES_main += \
...@@ -428,8 +427,9 @@ postprocess_FILES_writer := \ ...@@ -428,8 +427,9 @@ postprocess_FILES_writer := \
ifeq (DBCONNECTIVITY,$(filter DBCONNECTIVITY,$(BUILD_TYPE))) ifeq (DBCONNECTIVITY,$(filter DBCONNECTIVITY,$(BUILD_TYPE)))
postprocess_FILES_writer += \ postprocess_FILES_writer += \
$(call gb_XcuModuleTarget_get_target,connectivity/registry/writer)/org/openoffice/Office/DataAccess/Drivers-writer.xcu $(call gb_XcuModuleTarget_get_target,connectivity/registry/writer)/org/openoffice/Office/DataAccess/Drivers-writer.xcu \
postprocess_DRIVERS += writer $(call gb_XcuModuleTarget_get_target,connectivity/registry/mysql_jdbc)/org/openoffice/Office/DataAccess/Drivers-mysql_jdbc.xcu
postprocess_DRIVERS += writer mysql_jdbc
endif endif
postprocess_DEPS_xsltfilter := main postprocess_DEPS_xsltfilter := main
......
...@@ -261,8 +261,8 @@ $(eval $(call gb_Rdb_add_components,services,\ ...@@ -261,8 +261,8 @@ $(eval $(call gb_Rdb_add_components,services,\
$(if $(ENABLE_JAVA), \ $(if $(ENABLE_JAVA), \
connectivity/source/drivers/hsqldb/hsqldb \ connectivity/source/drivers/hsqldb/hsqldb \
connectivity/source/drivers/jdbc/jdbc \ connectivity/source/drivers/jdbc/jdbc \
connectivity/source/drivers/mysql_jdbc/mysql_jdbc \
) \ ) \
connectivity/source/drivers/mysql_jdbc/mysql_jdbc \
connectivity/source/manager/sdbc2 \ connectivity/source/manager/sdbc2 \
connectivity/source/drivers/writer/writer \ connectivity/source/drivers/writer/writer \
dbaccess/source/ext/macromigration/dbmm \ dbaccess/source/ext/macromigration/dbmm \
......
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