Reordered Qt libraries to allow proper resolution of symbols at link time.

git-svn-id: http://yate.null.ro/svn/yate/trunk@3130 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2010-03-17 15:58:04 +00:00
parent e4bf599a53
commit 6b2afadf7a
1 changed files with 2 additions and 2 deletions

View File

@ -970,8 +970,8 @@ if [[ "x$ac_cv_use_libqt4" = "xyes" ]]; then
export PKG_CONFIG_LIBDIR="$pkgd"
fi
verqt=`pkg-config --modversion QtCore 2>/dev/null`
incqt=`pkg-config --cflags QtCore QtGui QtXml QtNetwork 2>/dev/null | sed 's/QtNetwork/QtUiTools/'`
libqt=`pkg-config --libs QtCore QtGui QtXml QtNetwork 2>/dev/null | sed 's/QtNetwork/QtUiTools/'`
incqt=`pkg-config --cflags QtNetwork QtGui QtXml QtCore 2>/dev/null | sed 's/QtNetwork/QtUiTools/'`
libqt=`pkg-config --libs QtNetwork QtGui QtXml QtCore 2>/dev/null | sed 's/QtNetwork/QtUiTools/'`
unset PKG_CONFIG_LIBDIR
if [[ "x$incqt" != "x" -a "x$libqt" != "x" ]]; then
HAVE_QT4=yes