Skip to content
Snippets Groups Projects
Commit a26dabe3 authored by Michael McCormack's avatar Michael McCormack Committed by Alexandre Julliard
Browse files

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

parent 546916f4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment