• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A multilingual input method framework


Commit MetaInfo

Revision9e224e2b3a60e5c85465af1d9a15d7a3b6c84d60 (tree)
Time2005-09-10 15:48:46
Authortkng <tkng@ff9a...>
Commitertkng

Log Message

* 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.

Change Summary

Incremental Difference

--- a/configure.ac
+++ b/configure.ac
@@ -582,7 +582,7 @@ if test x$use_qt = xyes ; then
582582 if test -x "$QTDIR/bin/moc"; then
583583 HOST_MOC="$QTDIR/bin/moc"
584584 else
585- AC_CHECK_PROGS(HOST_MOC, moc, "")
585+ AC_CHECK_PROGS(HOST_MOC, moc-qt3 moc, "")
586586 fi
587587 if test -z "$HOST_MOC"; then
588588 AC_MSG_ERROR([no acceptable moc( meta object compiler ) found])
@@ -593,7 +593,7 @@ if test x$use_qt = xyes ; then
593593 if test -x "$QTDIR/bin/uic"; then
594594 HOST_UIC="$QTDIR/bin/uic"
595595 else
596- AC_CHECK_PROGS(HOST_UIC, uic, "")
596+ AC_CHECK_PROGS(HOST_UIC, uic-qt3 uic, "")
597597 fi
598598 if test -z "$HOST_UIC"; then
599599 AC_MSG_ERROR([no acceptable uic( user interface compiler ) found])