Commit a26dabe3 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

configure: Use -fno-builtin to avoid warnings with gcc 4.1.1.

parent 546916f4
......@@ -15469,13 +15469,7 @@ echo "${ECHO_T}$ac_cv_c_builtin_wchar_ctype" >&6; }
CFLAGS="$saved_CFLAGS"
if test "$ac_cv_c_builtin_wchar_ctype" = "yes"
then
BUILTINFLAG=""
for builtin in \
iswalnum iswalpha iswcntrl iswdigit iswgraph iswlower \
iswprint iswpunct iswspace iswupper iswxdigit towlower towupper
do
BUILTINFLAG="$BUILTINFLAG -fno-builtin-$builtin"
done
BUILTINFLAG="-fno-builtin"
fi
fi
......
......@@ -962,13 +962,7 @@ int main(void) {
CFLAGS="$saved_CFLAGS"
if test "$ac_cv_c_builtin_wchar_ctype" = "yes"
then
BUILTINFLAG=""
for builtin in \
iswalnum iswalpha iswcntrl iswdigit iswgraph iswlower \
iswprint iswpunct iswspace iswupper iswxdigit towlower towupper
do
BUILTINFLAG="$BUILTINFLAG -fno-builtin-$builtin"
done
BUILTINFLAG="-fno-builtin"
fi
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment