openbsd-ports/inputmethods/uim/patches/patch-configure_ac
espie 4f9dc282d8 activate the qt part, now that it works.
Split stuff into subpackages, so that you don't need to have gtk if
you don't need it.
2006-10-19 09:35:16 +00:00

41 lines
1.4 KiB
Plaintext

$OpenBSD: patch-configure_ac,v 1.2 2006/10/19 09:35:16 espie Exp $
--- configure.ac.orig Mon Aug 14 06:27:37 2006
+++ configure.ac Thu Oct 19 10:11:34 2006
@@ -744,10 +744,16 @@ if test x$use_qt = xyes ; then
# GUESS plugins dir for immodule installation
AC_MSG_CHECKING(for qt-immodule plugins dir)
- if test ! -d "$QTDIR/plugins"; then
- AC_MSG_RESULT(no)
+ if test ! -d "$QTDIR/plugins-30"; then
+ if test ! -d "$QTDIR/plugins"; then
+ AC_MSG_RESULT(no)
+ else
+ QT_PLUGINSDIR=$QTDIR/plugins
+ AC_MSG_RESULT($QT_PLUGINSDIR)
+ AC_SUBST(QT_PLUGINSDIR)
+ fi
else
- QT_PLUGINSDIR=$QTDIR/plugins
+ QT_PLUGINSDIR=$QTDIR/plugins-30
AC_MSG_RESULT($QT_PLUGINSDIR)
AC_SUBST(QT_PLUGINSDIR)
fi
@@ -762,13 +768,10 @@ if test x$use_qt = xyes ; then
LDFLAGS="$LDFLAGS $QT_LDFLAGS"
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
- AC_CHECK_LIB(qt, main, QT_LIB=-lqt,
- AC_CHECK_LIB(qt-mt, main, QT_LIB=-lqt-mt,
- AC_MSG_ERROR([Cannot find QT libraries.])))
+ AC_CHECK_LIB(qt-mt, main, QT_LIB='-pthread -lqt-mt',
+ AC_MSG_ERROR([Cannot find QT libraries.]), -pthread)
- if test "$QT_LIB" = "-lqt-mt"; then
- QT_CXXFLAGS="$QT_CXXFLAGS -DQT_THREAD_SUPPORT"
- fi
+ QT_CXXFLAGS="$QT_CXXFLAGS -DQT_THREAD_SUPPORT"
LDFLAGS=$_SAVE_LDFLAGS
QT_LIBS="$X_LIBS $QT_LDFLAGS $QT_LIB -lXext -lX11"