Debian Package rebuild

Rebuild of the Debian archive with clang

"Some headers could not be found" build failure(s)
clang 2.9
Return to the list
In some cases, the -MM option will change the include directory list. For example, the code
#include <libxml/parser.h>
will fail with clang but success with gcc.
$ gcc -MM  foo.c
foo.o: foo.c

$ clang -MM  foo.c
foo.c:1:10: fatal error: 'libxml/parser.h' file not found
#include <libxml/parser.h>
         ^
foo.o: foo.c
1 error generated.
Note all these problems are caused by -MM.
Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
has been reported on the xorg bug tracker.
Versions: 2.9 - 3.0 - 3.1 - 3.2 - 3.3 - 3.4 - 3.4.2 - 3.5.0 - 3.6.0 - 3.8.1 - 3.9.1 - 4.0.1 - 5.0 - 6.0 - 8.0.1 - 9.0.1 - 10.0.0 - 11.0.0 - 12.0.1 - 13.0.0