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:
authorArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-02-07 15:36:15 +0300
committerArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-02-07 15:36:15 +0300
commitbcadf5460a1f84b596112249147287d2de1c54e7 (patch)
tree7191df81d0b60d4faeb04a6ce6e57bf586e33912 /build-backend.xml
parent7b0749baaa01de6b1caf29e130aec2ce2579bb23 (diff)
.......... [DEV-2074] fixed previous build 2
Diffstat (limited to 'build-backend.xml')
-rw-r--r--build-backend.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build-backend.xml b/build-backend.xml
index a9b48b7c054..bc7ef50369c 100644
--- a/build-backend.xml
+++ b/build-backend.xml
@@ -3,9 +3,9 @@
<taskdef resource="net/sf/antcontrib/antlib.xml" />
- <!-- oracle oci library has functions declarations without arguments: f() instead of f(void), so it triggers pedantic warning -->
- <property name="COMP_FLAGS_ORACLE" value="-g -std=gnu99 -Wall -Wextra -Wunused -Wshadow -Wstrict-prototypes -Wdeclaration-after-statement -Wpointer-arith -Wno-maybe-uninitialized -Wformat -Wmissing-prototypes -Wunreachable-code -Wformat-extra-args -Wno-missing-field-initializers -Wno-missing-field-initializers-Wincompatible-pointer-types"/>
- <property name="COMP_FLAGS" value="-pedantic ${COMP_FLAGS_ORACLE}"/>
+ <!-- oracle oci library has functions declarations without arguments: f() instead of f(void), so it triggers -Wstrict-prototypes warning -->
+ <property name="COMP_FLAGS_ORACLE" value="-g -std=gnu99 -pedantic -Wall -Wextra -Wunused -Wshadow -Wdeclaration-after-statement -Wpointer-arith -Wno-maybe-uninitialized -Wformat -Wmissing-prototypes -Wunreachable-code -Wformat-extra-args -Wno-missing-field-initializers -Wno-missing-field-initializers-Wincompatible-pointer-types"/>
+ <property name="COMP_FLAGS" value="-Wstrict-prototypes ${COMP_FLAGS_ORACLE}"/>
<!-- Initialize database related options based on the database type -->
<switch value="${DBTYPE}" caseinsensitive="true">