|
From: Weber, Mathias-H. 1. S-PN-R. <Mat...@he...> - 2003-01-03 12:50:00
|
I installed log4cpp on W2K using cygwin. As you expected in your =
installation notes it runs smoothly without major complaints. Good work!
But there is one little deficiency: I use a native Windows installation =
of doxygen which resides in "O:\Program Files\...". Unfortunately the =
installation struggles when it meets the blank in the path.=20
I have an allergy against configure/automake and friends so I did not =
trace down the problem to its very root. I just modified the Makefile to =
work with my specific path: There is a macro for doxygen for which I put =
the value into apostrophes. But the macro is never used so I had to =
modify another line as shown below.
Maybe it is worth for you to think about fixing this. I could live with =
the way it is right now.
Makefile:
------------8<----------------------------------------------
...
DOXYGEN =3D '/cygdrive/o/Program Files/doxygen/bin/doxygen'
#DOXYGEN =3D /cygdrive/o/Program Files/doxygen/bin/doxygen
...
html/api/index.html: Doxyfile
${DOXYGEN}
# '/cygdrive/o/Program Files/doxygen/bin/doxygen'
------------>8----------------------------------------------
Regards,
Mathias
|