Skip to content

Commit

Permalink
Don't warn about multichar characters on BeOS/Haiku.
Browse files Browse the repository at this point in the history
The system headers use them generously.
  • Loading branch information
icculus committed Oct 13, 2011
1 parent eddbc01 commit 8564908
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions configure.in
Expand Up @@ -894,6 +894,19 @@ CheckWarnAll()

if test x$have_gcc_Wall = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall"

dnl Haiku headers use multicharacter constants all over the place. Ignore these warnings when using -Wall.
AC_MSG_CHECKING(for necessary GCC -Wno-multichar option)
need_gcc_Wno_multichar=no
case "$host" in
*-*-beos* | *-*-haiku*)
need_gcc_Wno_multichar=yes
;;
esac
AC_MSG_RESULT($need_gcc_Wno_multichar)
if test x$need_gcc_Wno_multichar = xyes; then
EXTRA_CFLAGS="$EXTRA_CFLAGS -Wno-multichar"
fi
fi
}

Expand Down

0 comments on commit 8564908

Please sign in to comment.