From b69717197e7a63b3d768d03609ac2a01e307e89e Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Tue, 24 Apr 2012 18:17:37 +0000 Subject: [PATCH] ps3: disable -Wsign-compare on the PS3, because it's really too verbose with old GCC versions. --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index ff045603..c21ee167 100644 --- a/configure.ac +++ b/configure.ac @@ -106,6 +106,8 @@ AC_CHECK_LIB(sysmodule_stub, cellSysmoduleLoadModule, LOL_LIBS="${LOL_LIBS} -lpngdec_stub" dnl For the pad library LOL_LIBS="${LOL_LIBS} -lio_stub -lusbd_stub -lpadfilter" + dnl Disable this warning, it's too verbose with vector.h + CXXFLAGS="${CXXFLAGS} -Wno-sign-compare" AC_PATH_PROG(MAKE_FSELF, make_fself, no)], [MAKE_FSELF=no]) AM_CONDITIONAL(USE_MAKE_FSELF, test "${MAKE_FSELF}" != "no")