gambas-source-code/gb.qt4/configure.ac
Benoît Minisini 3df72165af [CONFIGURATION]
* NEW: The syntax of pkg-config detection macro has changed to better use 
  the pkg-config possibilities.

[DEVELOPMENT ENVIRONMENT]
* BUG: Correctly update .startup file when closing the project property 
  dialog.
* BUG: Don't crash when the debugger stops inside the form generated code.
* BUG: Update the project templates to the 3.0 syntax.

[GB.QTE]
* BUG: Make this component compile correctly.
* BUG: Remove the automake warning.

[GB.QT4]
* NEW: Upgrade to the new QT 4 syntax in many places.
* NEW: Menu class has been redesigned to use the new QAction class. Not 
  tested yet.
* NEW: Standard controls work better.


git-svn-id: svn://localhost/gambas/trunk@1344 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-04-29 13:40:55 +00:00

61 lines
1.1 KiB
Text

dnl ---- configure.ac for gb.qt
AC_INIT(configure.ac)
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
)
GB_COMPONENT_PKG_CONFIG(
qtext,
QTEXT,
[QT4 toolkit extension],
[ext],
QtCore ">= 4.3.4" QtGui Qt3Support
)
GB_COMPONENT(
opengl,
OPENGL,
[OpenGL libraries],
[],
[GB_FIND(gl.h glu.h, /usr /usr/X11R6 /usr/local, include/GL)],
[GB_FIND(libGL.$SHLIBEXT libGLU.$SHLIBEXT, /usr /usr/X11R6 /usr/local, lib)],
[-lGL -lGLU])
GB_COMPONENT_PKG_CONFIG(
qtopengl,
QTOPENGL,
[QT4 OpenGL],
[opengl],
QtOpenGL ">= 4.3.4"
)
MOC=`pkg-config --variable=moc_location QtCore`
AC_SUBST(MOC)
AC_OUTPUT( \
Makefile \
src/Makefile \
src/ext/Makefile \
src/opengl/Makefile \
)