Hi,
I have some problems with the Makefile on apr-util/xml/expat.
The option -Wp,-MD,.deps/$(*F).pp is no understand neither on Solaris
nor on ReliantUnix.
On Solaris the fix is to use:
+++
$(LTCOMPILE) -xM $< > .deps/$(*F).pp;
\
$(LTCOMPILE) -c
$<
+++
Instead of
$(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c
$<
On ReliantUnix the -xM option is -M, so I have:
+++
$(LTCOMPILE) -M $< > .deps/$(*F).pp;
\
$(LTCOMPILE) -c
$<
+++
I am afraid we need a way to find how -Wp,-MD, option should be
processed.
Cheers
Jean-frederic