3054690743
* NEW: Print a summary of warning messages after each component compilation. [INTERPRETER] * BUG: StrPtr() with a length argument now works correctly. * NEW: Support for callbacks: when converting a function to a Pointer, an internal closure is created with the libffi library. The pointer then can be sent to any extern function as function pointer argument. * BUG: Opening memory stream should work in all cases now. git-svn-id: svn://localhost/gambas/trunk@3038 867c0c6c-44f3-4631-809d-bfa615b0a4ec
64 lines
1.1 KiB
Text
64 lines
1.1 KiB
Text
dnl ---- configure.ac for gb.qt
|
|
|
|
AC_INIT(configure.ac)
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
GB_INIT(gb.qt4)
|
|
AC_PROG_LIBTOOL
|
|
|
|
AC_ARG_ENABLE(
|
|
qt-translation,
|
|
[ --enable-qt-translation use qt translation files (default: yes)],
|
|
gb_use_qt_translation=$enableval,
|
|
gb_use_qt_translation=yes
|
|
)
|
|
|
|
if test "$gb_use_qt_translation" = "yes"; then
|
|
AC_DEFINE(USE_QT_TRANSLATION, 1, [Use QT translation])
|
|
fi
|
|
|
|
GB_CHECK_XWINDOW
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
qt,
|
|
QT,
|
|
[QT4 toolkit],
|
|
[src],
|
|
QtCore ">= 4.3.4" QtGui Qt3Support QtSvg
|
|
)
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
qtext,
|
|
QTEXT,
|
|
[QT4 toolkit extension],
|
|
[ext],
|
|
QtCore ">= 4.3.4" QtGui Qt3Support
|
|
)
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
qtwebkit,
|
|
QTWEBKIT,
|
|
[QT4 webkit component],
|
|
[webkit],
|
|
QtCore ">= 4.3.4" QtGui QtNetwork QtDBus QtXml QtWebKit ">= 4.5.0"
|
|
)
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
qtopengl,
|
|
QTOPENGL,
|
|
[QT4 OpenGL],
|
|
[opengl],
|
|
QtCore ">= 4.3.4" QtGui QtOpenGL
|
|
)
|
|
|
|
MOC=`pkg-config --variable=moc_location QtCore`
|
|
AC_SUBST(MOC)
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
src/ext/Makefile \
|
|
src/webkit/Makefile \
|
|
src/opengl/Makefile \
|
|
)
|
|
|
|
GB_PRINT_MESSAGES
|