/[svn]/qsampler/trunk/configure.in
ViewVC logotype

Diff of /qsampler/trunk/configure.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 254 by capela, Tue Jul 6 10:54:45 2004 UTC revision 255 by capela, Tue Sep 28 16:17:43 2004 UTC
# Line 85  dnl A common error message: Line 85  dnl A common error message:
85  ac_qtdir_errmsg="not found in current PATH. Maybe QT development environment isn't available (qt3-devel)."  ac_qtdir_errmsg="not found in current PATH. Maybe QT development environment isn't available (qt3-devel)."
86    
87  dnl Check for Qt qmake utility.  dnl Check for Qt qmake utility.
88  AC_PATH_PROG(ac_qmake, qmake, [no], $ac_qtdir/bin:${PATH})  AC_PATH_PROG(ac_qmake, qmake, [no], $QTDIR/bin:${PATH})
89  if test "x$ac_qmake" = "xno"; then  if test "x$ac_qmake" = "xno"; then
90     AC_MSG_ERROR([qmake $ac_qtdir_errmsg])     AC_MSG_ERROR([qmake $ac_qtdir_errmsg])
91  fi  fi
92  AC_SUBST(ac_qmake)  AC_SUBST(ac_qmake)
93    
94  dnl Check for Qt moc utility.  dnl Check for Qt moc utility.
95  AC_PATH_PROG(ac_moc, moc, [no])  AC_PATH_PROG(ac_moc, moc, [no], $QTDIR/bin:${PATH})
96  if test "x$ac_moc" = "xno"; then  if test "x$ac_moc" = "xno"; then
97     AC_MSG_ERROR([moc $ac_qtdir_errmsg])     AC_MSG_ERROR([moc $ac_qtdir_errmsg])
98  fi  fi
99  AC_SUBST(ac_moc)  AC_SUBST(ac_moc)
100    
101  dnl Check for Qt uic utility.  dnl Check for Qt uic utility.
102  AC_PATH_PROG(ac_uic, uic, [no])  AC_PATH_PROG(ac_uic, uic, [no], $QTDIR/bin:${PATH})
103  if test "x$ac_uic" = "xno"; then  if test "x$ac_uic" = "xno"; then
104     AC_MSG_ERROR([uic $ac_qtdir_errmsg])     AC_MSG_ERROR([uic $ac_qtdir_errmsg])
105  fi  fi

Legend:
Removed from v.254  
changed lines
  Added in v.255

  ViewVC Help
Powered by ViewVC