Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktors Tjarve <viktors.tjarve@zabbix.com>2019-12-02 17:47:48 +0300
committerViktors Tjarve <viktors.tjarve@zabbix.com>2019-12-02 17:47:48 +0300
commit5b0deaec3e1512343dce50efa0f7200c8c5c0962 (patch)
tree82797f06980b3be3348c17647c7a322424c0255d /build-backend.xml
parent4be2a3b122ab79da1a2239bbc913062865b21999 (diff)
.......... [ZBXNEXT-5592] dropped DB2 database support for Zabbix server
Diffstat (limited to 'build-backend.xml')
-rw-r--r--build-backend.xml13
1 files changed, 1 insertions, 12 deletions
diff --git a/build-backend.xml b/build-backend.xml
index 45c410b6a8c..389b14ead5b 100644
--- a/build-backend.xml
+++ b/build-backend.xml
@@ -13,10 +13,6 @@
<property name="with.db" value="--with-oracle"/>
<property name="with.oracle" value="true"/>
</case>
- <case value="DB2">
- <property name="with.db" value="--with-ibm-db2"/>
- <property name="with.db2" value="true"/>
- </case>
<default>
<property name="with.db" value="--with-mysql"/>
<property name="with.mysql" value="true"/>
@@ -175,15 +171,8 @@
</sequential>
</target>
- <target name="make-db-db2" unless="${with.db2}">
- <!-- Build Zabbix with ibm db2 database -->
- <sequential>
- <make args="--enable-server --enable-agent --enable-proxy --with-ibm-db2 --with-libxml2 --with-unixodbc --with-net-snmp --with-ssh2 --with-openipmi --with-libevent --with-openssl --with-ldap --with-libcurl --with-ibm-db2-include=/opt/ibm/db2/V11.1/include --with-ibm-db2-lib=/opt/ibm/db2/V11.1/lib64"/>
- </sequential>
- </target>
-
<!-- Build Zabbix with all supported databases -->
- <target name="make-db" depends="make-db-mysql,make-db-postgresql,make-db-oracle,make-db-db2"/>
+ <target name="make-db" depends="make-db-mysql,make-db-postgresql,make-db-oracle"/>
<macrodef name="make-tests">
<!-- Build Zabbix cmocka tests with the specified command line arguments -->