summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2004-02-22 19:57:25 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2004-02-22 19:57:25 (GMT)
commit5edb3c85109d09e5fa43529bf8b584382f7501a5 (patch)
treebb6a2ec7453702ed2fe2348793b0bddf5d80042a /configure
parenta9b8e48237d4094095b91031ac7c9fb0f4cc028e (diff)
downloadDoxygen-5edb3c85109d09e5fa43529bf8b584382f7501a5.zip
Doxygen-5edb3c85109d09e5fa43529bf8b584382f7501a5.tar.gz
Doxygen-5edb3c85109d09e5fa43529bf8b584382f7501a5.tar.bz2
Release-1.3.6-20040222
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure35
1 files changed, 19 insertions, 16 deletions
diff --git a/configure b/configure
index 1d0e39f..facf9b7 100755
--- a/configure
+++ b/configure
@@ -224,30 +224,33 @@ fi
#- check for qt --------------------------------------------------------------
if test "$f_wizard" = YES; then
- echo -n " Checking for Qt..."
- if test -d "/usr/lib/qt3/lib"; then
- if test -d "/usr/lib/qt3/include"; then
- if test -x "/usr/lib/qt3/bin/moc"; then
- QTDIR="/usr/lib/qt3";
+ if test -z "$QTDIR"; then
+ echo " QTDIR environment variable not set!"
+ echo -n " Checking for Qt..."
+ if test -d "/usr/lib/qt3/lib"; then
+ if test -d "/usr/lib/qt3/include"; then
+ if test -x "/usr/lib/qt3/bin/moc"; then
+ QTDIR="/usr/lib/qt3";
+ fi
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";
+ 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
- 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";
+ 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";
+ fi
fi
fi
fi
if test -z "$QTDIR"; then
- echo "QTDIR not set!"
+ echo "QTDIR not set and Qt not found at standard locations!"
echo
echo "tmake requires the QTDIR environment variable to be set."
echo "check your Qt installation!"