* [PATCH] Actually support embedded Qt, make configuration code more robust
@ 2006-05-27 2:27 Pavel Roskin
2006-05-27 6:22 ` Marco Costalba
0 siblings, 1 reply; 2+ messages in thread
From: Pavel Roskin @ 2006-05-27 2:27 UTC (permalink / raw)
To: Marco Costalba; +Cc: git
Add -DQWS and -fno-rtti flags for embedded Qt.
Don't add X11 flags for embedded Qt and threading specific flags for
non-multithreaded Qt.
Before checking for the Qt library, make sure it actually exists in the
Qt library path and not elsewhere.
Fix missing ";;" before "esac" (potentially non-portable).
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Pavel Roskin <proski@gnu.org>
---
config/gwqt.m4 | 40 ++++++++++++++++++++++++++--------------
1 files changed, 26 insertions(+), 14 deletions(-)
diff --git a/config/gwqt.m4 b/config/gwqt.m4
index 78bed1d..cccccfe 100644
--- a/config/gwqt.m4
+++ b/config/gwqt.m4
@@ -91,17 +91,19 @@ fi
# Checking for possible dependencies of the Qt library
gwqt_save_LDFLAGS="$LDFLAGS"
-QT_LIBS="$X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
-AC_CHECK_LIB(pthread, pthread_exit, [QT_LIBS="-lpthread $QT_LIBS"])
+QT_LIBS_X="$X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
+AC_CHECK_LIB(pthread, pthread_exit, [QT_LIBS_MT="-lpthread $QT_LIBS"])
LDFLAGS="$LDFLAGS $X_LIBS"
-AC_CHECK_LIB(Xft, XftFontOpen, [QT_LIBS="-lXft $QT_LIBS"], , [$QT_LIBS])
+AC_CHECK_LIB(Xft, XftFontOpen, [QT_LIBS_X="-lXft $QT_LIBS_X"], , [$QT_LIBS_X])
# Checking for the Qt library
LDFLAGS="$LDFLAGS -L$QTLIBDIR"
for i in qt-mt qt qte-mt qte qt-gl; do
- AC_CHECK_LIB([$i], Get_Class, [qtlib="$i"; break], , [$QT_LIBS])
+ set X "$QTLIBDIR/lib$i."*
+ test "$[2]" = "$QTLIBDIR/lib$i.*" && continue
+ AC_CHECK_LIB([$i], main, [qtlib="$i"; break], , [$QT_LIBS_X $QT_LIBS_MT])
done
if test -z "$qtlib"; then
@@ -110,30 +112,40 @@ fi
LDFLAGS="$gwqt_save_LDFLAGS"
-# Calculate QT_CPPFLAGS
+# Calculate QT_CPPFLAGS, QT_LDFLAGS and QT_LIBS
+QT_LIBS="-l$qtlib"
case "$qtlib" in
- *-mt) QT_CPPFLAGS="-D_REENTRANT -DQT_THREAD_SUPPORT";;
+ *-mt)
+ QT_CPPFLAGS="-D_REENTRANT -DQT_THREAD_SUPPORT"
+ QT_LIBS="$QT_LIBS $QT_LIBS_MT";;
esac
+case "$qtlib" in
+ qte*)
+ QT_CPPFLAGS="-DQWS -fno-rtti";;
+ *)
+ QT_LIBS="$QT_LIBS $QT_LIBS_X"
+ QT_LDFLAGS="$X_LIBS";;
+esac
+
+# Add Qt include path
if test "$QTINCDIR" != "/usr/include"; then
QT_CPPFLAGS="-I$QTINCDIR $QT_CPPFLAGS"
fi
-AC_MSG_NOTICE([QT_CPPFLAGS = $QT_CPPFLAGS])
-AC_SUBST(QT_CPPFLAGS)
-# Calculate QT_LDFLAGS
-QT_LDFLAGS="$X_LIBS"
+# Add Qt library path
case "$QTLIBDIR" in
/usr/lib) ;;
/usr/lib64) ;;
/usr/X11R6/lib) ;;
- *) QT_LDFLAGS="$QT_LDFLAGS -L$QTLIBDIR";
+ *) QT_LDFLAGS="$QT_LDFLAGS -L$QTLIBDIR";;
esac
+
+# Report the results
+AC_MSG_NOTICE([QT_CPPFLAGS = $QT_CPPFLAGS])
+AC_SUBST(QT_CPPFLAGS)
AC_MSG_NOTICE([QT_LDFLAGS = $QT_LDFLAGS])
AC_SUBST(QT_LDFLAGS)
-
-# Calculate QT_LIBS
-QT_LIBS="-l$qtlib $QT_LIBS"
AC_MSG_NOTICE([QT_LIBS = $QT_LIBS])
AC_SUBST(QT_LIBS)
])
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Actually support embedded Qt, make configuration code more robust
2006-05-27 2:27 [PATCH] Actually support embedded Qt, make configuration code more robust Pavel Roskin
@ 2006-05-27 6:22 ` Marco Costalba
0 siblings, 0 replies; 2+ messages in thread
From: Marco Costalba @ 2006-05-27 6:22 UTC (permalink / raw)
To: Pavel Roskin; +Cc: git
On 5/27/06, Pavel Roskin <proski@gnu.org> wrote:
> Add -DQWS and -fno-rtti flags for embedded Qt.
>
> Don't add X11 flags for embedded Qt and threading specific flags for
> non-multithreaded Qt.
>
> Before checking for the Qt library, make sure it actually exists in the
> Qt library path and not elsewhere.
>
Thanks, patch applied.
Please note that qgit public repository has changed. It is now
git://git.kernel.org/pub/scm/qgit/qgit.git
Marco
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-05-27 6:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-27 2:27 [PATCH] Actually support embedded Qt, make configuration code more robust Pavel Roskin
2006-05-27 6:22 ` Marco Costalba
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).