~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_warnings.m4

  • Committer: Vijay Samuel
  • Date: 2010-09-10 21:03:37 UTC
  • mto: (1757.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1758.
  • Revision ID: vijay@vijay-20100910210337-rf7c2ymawtqj6tkv
Merge added utf 8 tamil test case suite and test case for creating a database in tamil.

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
 
170
170
    AS_IF([test "$INTELCC" = "yes"],[
171
171
      m4_if(PW_LESS_WARNINGS,[no],[
172
 
        BASE_WARNINGS="-w1 -Werror -Wcheck ${W_FORMAT} -Wp64 -Woverloaded-virtual -Wcast-qual -diag-disable 188"
 
172
        BASE_WARNINGS="-w1 -Werror -Wcheck ${W_FORMAT} -Wp64 -Woverloaded-virtual -Wcast-qual"
173
173
      ],[
174
 
        dnl 2203 is like old-style-cast
175
 
        dnl 1684 is like strict-aliasing
176
 
        dnl 188 is about using enums as bitfields
177
 
        dnl 1683 is a warning about _EXPLICIT_ casting, which we want
178
 
        BASE_WARNINGS="-w1 -Werror -Wcheck ${W_FORMAT} -Wp64 -Woverloaded-virtual -Wcast-qual -diag-disable 188,981,2259,2203,1683,1684"
 
174
        BASE_WARNINGS="-w1 -Wcheck ${W_FORMAT} -Wp64 -Woverloaded-virtual -Wcast-qual -diag-disable 981"
179
175
      ])
180
176
      CC_WARNINGS="${BASE_WARNINGS}"
181
177
      CXX_WARNINGS="${BASE_WARNINGS}"
182
 
      PROTOSKIP_WARNINGS="-diag-disable 188,981,967,2259,1683,1684,2203"
183
 
      
184
178
    ],[
185
179
      m4_if(PW_LESS_WARNINGS,[no],[
186
180
        BASE_WARNINGS_FULL="${W_FORMAT_2} ${W_CONVERSION} -Wstrict-aliasing"