[uim-commit] r1463 - branches/0.4

tkng at freedesktop.org tkng at freedesktop.org
Fri Sep 9 23:48:49 PDT 2005


Author: tkng
Date: 2005-09-09 23:48:46 -0700 (Fri, 09 Sep 2005)
New Revision: 1463

Modified:
   branches/0.4/configure.ac
Log:
* configure.ac: Added a check for moc-qt3 and uic-qt3. This is a work around
  for Debian system which is installed both Qt3 and Qt4.



Modified: branches/0.4/configure.ac
===================================================================
--- branches/0.4/configure.ac	2005-09-09 11:44:15 UTC (rev 1462)
+++ branches/0.4/configure.ac	2005-09-10 06:48:46 UTC (rev 1463)
@@ -582,7 +582,7 @@
     if test -x "$QTDIR/bin/moc"; then
       HOST_MOC="$QTDIR/bin/moc"
     else
-      AC_CHECK_PROGS(HOST_MOC, moc, "")
+      AC_CHECK_PROGS(HOST_MOC, moc-qt3 moc, "")
     fi
     if test -z "$HOST_MOC"; then
       AC_MSG_ERROR([no acceptable moc( meta object compiler ) found])
@@ -593,7 +593,7 @@
     if test -x "$QTDIR/bin/uic"; then
       HOST_UIC="$QTDIR/bin/uic"
     else
-      AC_CHECK_PROGS(HOST_UIC, uic, "")
+      AC_CHECK_PROGS(HOST_UIC, uic-qt3 uic, "")
     fi
     if test -z "$HOST_UIC"; then
       AC_MSG_ERROR([no acceptable uic( user interface compiler ) found])



More information about the uim-commit mailing list