--- qsampler/trunk/configure.in 2004/07/06 10:54:45 176 +++ qsampler/trunk/configure.in 2004/09/28 16:17:43 255 @@ -85,21 +85,21 @@ ac_qtdir_errmsg="not found in current PATH. Maybe QT development environment isn't available (qt3-devel)." dnl Check for Qt qmake utility. -AC_PATH_PROG(ac_qmake, qmake, [no], $ac_qtdir/bin:${PATH}) +AC_PATH_PROG(ac_qmake, qmake, [no], $QTDIR/bin:${PATH}) if test "x$ac_qmake" = "xno"; then AC_MSG_ERROR([qmake $ac_qtdir_errmsg]) fi AC_SUBST(ac_qmake) dnl Check for Qt moc utility. -AC_PATH_PROG(ac_moc, moc, [no]) +AC_PATH_PROG(ac_moc, moc, [no], $QTDIR/bin:${PATH}) if test "x$ac_moc" = "xno"; then AC_MSG_ERROR([moc $ac_qtdir_errmsg]) fi AC_SUBST(ac_moc) dnl Check for Qt uic utility. -AC_PATH_PROG(ac_uic, uic, [no]) +AC_PATH_PROG(ac_uic, uic, [no], $QTDIR/bin:${PATH}) if test "x$ac_uic" = "xno"; then AC_MSG_ERROR([uic $ac_qtdir_errmsg]) fi