2008-04-24 14:49:12 +02:00
|
|
|
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,
|
2008-04-29 15:40:55 +02:00
|
|
|
[QT4 toolkit],
|
2008-04-24 14:49:12 +02:00
|
|
|
[src],
|
2008-04-29 15:40:55 +02:00
|
|
|
QtCore ">= 4.3.4" QtGui Qt3Support
|
|
|
|
)
|
|
|
|
|
|
|
|
GB_COMPONENT_PKG_CONFIG(
|
|
|
|
qtext,
|
|
|
|
QTEXT,
|
|
|
|
[QT4 toolkit extension],
|
|
|
|
[ext],
|
|
|
|
QtCore ">= 4.3.4" QtGui Qt3Support
|
2008-04-24 14:49:12 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
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,
|
2008-04-29 15:40:55 +02:00
|
|
|
[QT4 OpenGL],
|
2008-04-24 14:49:12 +02:00
|
|
|
[opengl],
|
2008-04-29 15:40:55 +02:00
|
|
|
QtOpenGL ">= 4.3.4"
|
2008-04-24 14:49:12 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
MOC=`pkg-config --variable=moc_location QtCore`
|
|
|
|
AC_SUBST(MOC)
|
|
|
|
|
|
|
|
AC_OUTPUT( \
|
|
|
|
Makefile \
|
|
|
|
src/Makefile \
|
|
|
|
src/ext/Makefile \
|
|
|
|
src/opengl/Makefile \
|
|
|
|
)
|