On Fri, 2008-10-31 at 12:22 -0400, Carolyn Beeton wrote: > Looks like your platform/version of g++ sets some flag that makes > ignoring return codes a warning (and hence a failure in projects with > -Werror). It doesn't fail on either of my platforms (SuSE 10.3 64bit or > FC8 64bit) Is this level of warning reasonable? I see lots of existing > code in this same file which does not handle the return values.
RPM building sets a flag (-D_FORTIFY_SOURCE=2) which causes tighter checking. Depending on your platform, that may cause code to fail that doesn't on other platforms. We looked into this a year or two ago, and by far the easiest solution is to tighten up the source code... trust me. Dale _______________________________________________ sipx-dev mailing list [email protected] List Archive: http://list.sipfoundry.org/archive/sipx-dev Unsubscribe: http://list.sipfoundry.org/mailman/listinfo/sipx-dev
