enable all warnings (but disable some of them) for DEC/Compaq/HP C++ compiler

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-10-08 21:28:12 +00:00
parent 3f9ee1cd85
commit 179daed8f0

View File

@ -1958,6 +1958,18 @@ if test "x$HPCXX" = "xyes"; then
CXXFLAGS="$CXXFLAGS +W 2340"
fi
dnl DEC/Compaq/HP cxx warnings
if test "x$COMPAQCXX" = "xyes"; then
dnl -w0 enables all warnings, then we disable some of them:
dnl basclsnondto: base class dtor non virtual (sometimes we do want this)
dnl unrimpret: "end of routine block may be unreachable" is given for
dnl every "if ( ) return ...; else return ...;"
dnl intconlosbit: "conversion to integral type of smaller size could lose
dnl data" this is a useful warning but there are too many of
dnl them for now
CXXFLAGS="-w0 -msg_disable basclsnondto,unrimpret,intconlosbit"
fi
dnl check for std::string or std::wstring
if test "$wxUSE_STD_STRING" = "yes" -o "$wxUSE_STL" = "yes"; then
AC_LANG_PUSH(C++)