Dimitri van Heesch wrote:
> Seems like a Qt/moc problem. Are you sure the moc you use (which moc) is
> the one coming with qt-3.1.1?
>
> Regards,
> Dimitri
Dimitri,
You were right. I have both qt2 and qt3 installed. Moc is not in my
path, but configure was picking up qt2. I made a change to the configure
script to pick up the first qt that it finds. It was finding qt3, but
then testing for qt2. Here a patch that worked for me.
Thanks for your help.
Andy
*** doxygen-1.3.6/configure.orig Mon Apr 12 11:07:56 2004
--- doxygen-1.3.6/configure Mon Apr 12 11:53:42 2004
***************
*** 232,245 ****
fi
fi
fi
! if test -d "/usr/lib/qt2/lib"; then
if test -d "/usr/lib/qt2/include"; then
if test -x "/usr/lib/qt2/bin/moc"; then
QTDIR="/usr/lib/qt2";
fi
fi
fi
! if test -d "/usr/lib/qt/lib"; then
if test -d "/usr/lib/qt/include"; then
if test -x "/usr/lib/qt/bin/moc"; then
QTDIR="/usr/lib/qt";
--- 232,245 ----
fi
fi
fi
! if test -z "$QTDIR" && test -d "/usr/lib/qt2/lib"; then
if test -d "/usr/lib/qt2/include"; then
if test -x "/usr/lib/qt2/bin/moc"; then
QTDIR="/usr/lib/qt2";
fi
fi
fi
! if test -z "$QTDIR" && test -d "/usr/lib/qt/lib"; then
if test -d "/usr/lib/qt/include"; then
if test -x "/usr/lib/qt/bin/moc"; then
QTDIR="/usr/lib/qt";
|