blob: 744f59b06a17c01a450c1a703642903342824772 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<sect2>
<title>Command explanations</title>
<para>
<userinput>CXXFLAGS=-Dstrerror=strerror</userinput>: If no macro
strerror is defined, src/include/lib.h declares a function prototype
for strerror which is incompatible with Glibc's /usr/include/string.h.
By defining strerror=strerror a macro is defined which prevents the
declaration and does not alter the meaning of strerror.
</para>
</sect2>
|