# Check for Qt compiler flags, linker flags, and binary packages AC_DEFUN([gw_CHECK_QT], [ AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([AC_PATH_X]) AC_MSG_CHECKING([QTDIR]) AC_ARG_WITH([qtdir], [ --with-qtdir=DIR Qt installation directory [default=$QTDIR]], QTDIR=$withval) # Check that QTDIR is defined or that --with-qtdir given if test x"$QTDIR" = x ; then # some usual Qt-locations QT_SEARCH="/usr /usr/lib/qt /usr/lib/qt3 /usr/lib/qt31 /usr/lib/qt32 /usr/lib/qt33 /usr/lib/qt-3.0 /usr/lib/qt-3.1 /usr/lib/qt-3.2 /usr/lib/qt-3.3 usr/local/qt /usr/local/qt3 /usr/local/qt31/ /usr/local/qt32 /usr/local/qt33 /usr/X11R6 /usr/local/Trolltech/Qt-4.0.0" else QT_SEARCH=$QTDIR QTDIR="" fi for i in $QT_SEARCH ; do QT_INCLUDE_SEARCH="include include/qt include/qt3 include/Qt" for j in $QT_INCLUDE_SEARCH ; do if test -f $i/$j/qglobal.h -a x$QTDIR = x ; then QTDIR=$i QT_INCLUDES=$i/$j fi done done if test x"$QTDIR" = x ; then AC_MSG_ERROR([*** QTDIR must be defined, or --with-qtdir option given]) fi AC_MSG_RESULT([$QTDIR]) # Change backslashes in QTDIR to forward slashes to prevent escaping # problems later on in the build process, mainly for Cygwin build # environment using MSVC as the compiler # TODO: Use sed instead of perl QTDIR=`echo $QTDIR | perl -p -e 's/\\\\/\\//g'` AC_MSG_CHECKING([Qt includes]) # Check where includes are located if test x"$QT_INCLUDES" = x ; then AC_MSG_ERROR([*** could not find Qt-includes! Make sure you have the Qt-devel-files installed!]) fi AC_MSG_RESULT([$QT_INCLUDES]) # Figure out which version of Qt we are using AC_MSG_CHECKING([Qt version]) QT_VER=`grep 'define.*QT_VERSION_STR\W' $QT_INCLUDES/qglobal.h | perl -p -e 's/\D//g'` case "${QT_VER}" in 2*) AC_MSG_ERROR([*** Qt 2 is not supported by iTALC. Please upgrade to Qt3!]) ;; 3*) QT_MAJOR="3" ;; 4*) QT_MAJOR="4" ;; *) AC_MSG_ERROR([*** Don't know how to handle this Qt major version]) ;; esac AC_MSG_RESULT([$QT_VER ($QT_MAJOR)]) # Check that moc is in path AC_CHECK_PROG(MOC, moc, $QTDIR/bin/moc,,$QTDIR/bin/) if test x$MOC = x ; then AC_CHECK_PROG(MOC, moc-qt3, $QTDIR/bin/moc-qt3,,$QTDIR/bin/) if test x$MOC = x ; then AC_MSG_ERROR([*** not found! Make sure you have Qt-devel-tools installed!]) fi fi # uic is the Qt user interface compiler AC_CHECK_PROG(UIC, uic, $QTDIR/bin/uic,,$QTDIR/bin/) if test x$UIC = x ; then AC_MSG_WARN([*** not found! It's currently not needed but should be part of a proper Qt-devel-tools-installation!]) fi # qembed is the Qt data embedding utility. #AC_CHECK_PROG(QEMBED, qembed, $QTDIR/bin/qembed,,$QTDIR/bin/) #if test x$QEMBED = x ; then # AC_MSG_ERROR([*** not found! Make sure you have Qt-devel-tools/Qt-extensions installed! On some distributions (e.g. SuSE) the package, containing qembed is also called qt3-extensions.]) #fi # lupdate is the Qt translation-update utility. AC_CHECK_PROG(LUPDATE, lupdate, $QTDIR/bin/lupdate,,$QTDIR/bin/) if test x$LUPDATE = x ; then AC_MSG_WARN([*** not found! It's not needed just for compiling but should be part of a proper Qt-devel-tools-installation!]) fi # lrelease is the Qt translation-release utility. AC_CHECK_PROG(LRELEASE, lrelease, $QTDIR/bin/lrelease,,$QTDIR/bin/) if test x$LRELEASE = x ; then AC_MSG_WARN([*** not found! It's not needed just for compiling but should be part of a proper Qt-devel-tools-installation!]) fi # Calculate Qt include path QT_CXXFLAGS="-I$QT_INCLUDES" if test "$QT_MAJOR" = "4" ; then QT_CXXFLAGS="$QT_CXXFLAGS -I$QTDIR/include" fi QT_IS_EMBEDDED="no" # On unix, figure out if we're doing a static or dynamic link case "${host}" in *-cygwin) AC_DEFINE_UNQUOTED(WIN32, "", Defined if on Win32 platform) if test -f "$QTDIR/lib/qt.lib" ; then QT_LIB="qt.lib" QT_IS_STATIC="yes" QT_IS_MT="no" elif test -f "$QTDIR/lib/qt-mt.lib" ; then QT_LIB="qt-mt.lib" QT_IS_STATIC="yes" QT_IS_MT="yes" elif test -f "$QTDIR/lib/qt$QT_VER.lib" ; then QT_LIB="qt$QT_VER.lib" QT_IS_STATIC="no" QT_IS_MT="no" elif test -f "$QTDIR/lib/qt-mt$QT_VER.lib" ; then QT_LIB="qt-mt$QT_VER.lib" QT_IS_STATIC="no" QT_IS_MT="yes" fi ;; *) QT_IS_STATIC=`ls $QTDIR/lib/*.a 2> /dev/null` if test "x$QT_IS_STATIC" = x; then QT_IS_STATIC="no" else QT_IS_STATIC="yes" fi if test x$QT_IS_STATIC = xno ; then QT_IS_DYNAMIC=`ls $QTDIR/lib/*.so 2> /dev/null` if test "x$QT_IS_DYNAMIC" = x; then AC_MSG_ERROR([*** Couldn't find any Qt libraries]) fi fi if test "$QT_MAJOR" = "4" ; then QT_IS_MT="yes" QT_LIB="-lQtCore -lQtGui -lQtXml -lQt3Support" else if test "x`ls $QTDIR/lib/libqt-mt.* 2> /dev/null`" != x ; then QT_LIB="-lqt-mt" QT_IS_MT="yes" elif test "x`ls $QTDIR/lib/libqt.* 2> /dev/null`" != x ; then QT_LIB="-lqt" QT_IS_MT="no" elif test "x`ls $QTDIR/lib/libqte.* 2> /dev/null`" != x ; then QT_LIB="-lqte" QT_IS_MT="no" QT_IS_EMBEDDED="yes" elif test "x`ls $QTDIR/lib/libqte-mt.* 2> /dev/null`" != x ; then QT_LIB="-lqte-mt" QT_IS_MT="yes" QT_IS_EMBEDDED="yes" fi fi ;; esac AC_MSG_CHECKING([if Qt is static]) AC_MSG_RESULT([$QT_IS_STATIC]) AC_MSG_CHECKING([if Qt is multithreaded]) if test "$QT_IS_MT" = "no"; then AC_MSG_ERROR([*** your Qt is not multithreaded. That's bad, because multithreading is required for compiling... Please install Qt-mt!]) fi AC_MSG_RESULT([$QT_IS_MT]) AC_MSG_CHECKING([if Qt is embedded]) AC_MSG_RESULT([$QT_IS_EMBEDDED]) QT_GUILINK="" QASSISTANTCLIENT_LDADD="-lqassistantclient" QT_LIBS="$QT_LIB" case "${host}" in *irix*) QT_LIBS="$QT_LIB" if test $QT_IS_STATIC = yes ; then QT_LIBS="$QT_LIBS -L$x_libraries -lXext -lX11 -lm -lSM -lICE" fi ;; *linux*) QT_LIBS="$QT_LIB" if test $QT_IS_STATIC = yes && test $QT_IS_EMBEDDED = no; then QT_LIBS="$QT_LIBS -L$x_libraries -lXext -lX11 -lm -lSM -lICE -ldl -ljpeg" fi ;; *osf*) # Digital Unix (aka DGUX aka Tru64) QT_LIBS="$QT_LIB" if test $QT_IS_STATIC = yes ; then QT_LIBS="$QT_LIBS -L$x_libraries -lXext -lX11 -lm -lSM -lICE" fi ;; *solaris*) QT_LIBS="$QT_LIB" if test $QT_IS_STATIC = yes ; then QT_LIBS="$QT_LIBS -L$x_libraries -lXext -lX11 -lm -lSM -lICE -lresolv -lsocket -lnsl" fi ;; *win*) # linker flag to suppress console when linking a GUI app on Win32 QT_GUILINK="/subsystem:windows" if test $QT_MAJOR = "3" ; then if test $QT_IS_MT = yes ; then QT_LIBS="/nodefaultlib:libcmt" else QT_LIBS="/nodefaultlib:libc" fi fi if test $QT_IS_STATIC = yes ; then QT_LIBS="$QT_LIBS $QT_LIB kernel32.lib user32.lib gdi32.lib comdlg32.lib ole32.lib shell32.lib imm32.lib advapi32.lib wsock32.lib winspool.lib winmm.lib netapi32.lib" if test $QT_MAJOR = "3" ; then QT_LIBS="$QT_LIBS qtmain.lib" fi else QT_LIBS="$QT_LIBS $QT_LIB" if test $QT_MAJOR = "3" ; then QT_CXXFLAGS="$QT_CXXFLAGS -DQT_DLL" QT_LIBS="$QT_LIBS qtmain.lib qui.lib user32.lib netapi32.lib" fi fi QASSISTANTCLIENT_LDADD="qassistantclient.lib" ;; esac if test x"$QT_IS_EMBEDDED" = "xyes" ; then QT_CXXFLAGS="-DQWS $QT_CXXFLAGS" fi if test x"$QT_IS_MT" = "xyes" ; then QT_CXXFLAGS="$QT_CXXFLAGS -D_REENTRANT -DQT_THREAD_SUPPORT" QT_LIBS="$QT_LIBS -lpthread" fi QT_LDADD="-L$QTDIR/lib $QT_LIBS" #if test x$QT_IS_STATIC = xyes ; then # OLDLIBS="$LIBS" # LIBS="$QT_LDADD" # AC_CHECK_LIB(Xft, XftFontOpen, QT_LDADD="$QT_LDADD -lXft") # LIBS="$LIBS" #fi AC_MSG_CHECKING([QT_CXXFLAGS]) AC_MSG_RESULT([$QT_CXXFLAGS]) AC_MSG_CHECKING([QT_LDADD]) AC_MSG_RESULT([$QT_LDADD]) AC_SUBST(QT_CXXFLAGS) AC_SUBST(QT_LDADD) AC_SUBST(QT_GUILINK) AC_SUBST(QASSISTANTCLIENT_LDADD) ])