94b347f461
* NEW: A new macro, GB_COMPONENT_SEARCH, that uses pkg-config first, and if it fails, then tries to find the libraries and headers with a file search. * NEW: The GB_CHECK_XWINDOW macro is more clever. [DEVELOPMENT ENVIRONMENT] * NEW: The editor in the commit window has been enhanced. It has a little toolbar and displays the cursor position now. [GB.DB.SQLITE3] * NEW: Uses the new GB_COMPONENT_SEARCH macro. [GB.QT] * NEW: Uses the new GB_COMPONENT_SEARCH macro. [GB.QT.EXT] * BUG: Removed a non-implemented method in the CEditor class. git-svn-id: svn://localhost/gambas/trunk@1211 867c0c6c-44f3-4631-809d-bfa615b0a4ec
49 lines
1.1 KiB
Text
49 lines
1.1 KiB
Text
dnl ---- configure.ac for gb.qt
|
|
|
|
AC_INIT(configure.ac)
|
|
GB_INIT(gb.qt)
|
|
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_FIND_QT_MOC
|
|
|
|
GB_COMPONENT_SEARCH(
|
|
qt,
|
|
QT,
|
|
[QT component],
|
|
[src],
|
|
qt-mt,
|
|
[>= 3.3],
|
|
[GB_FIND(qptrlist.h, /usr/local/lib /usr/local /opt /usr/lib /usr/X11 /usr/X11R6 /usr/pkg /usr, include qt*/include qt/*/include)],
|
|
[GB_FIND(libqt-mt.$SHLIBEXT, /usr/local /opt /usr/X11 /usr/X11R6 /usr/pkg /usr, lib qt*/lib qt/*/lib, libqt-mt.$SHLIBEXT.3)],
|
|
[$CXX_LIB $THREAD_LIB $X_LIBS -lqt-mt],
|
|
[$THREAD_INC])
|
|
|
|
GB_COMPONENT(
|
|
qtopengl,
|
|
QTOPENGL,
|
|
[QT OpenGL component],
|
|
[opengl],
|
|
[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])
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/Makefile \
|
|
src/share/Makefile \
|
|
src/ext/Makefile \
|
|
src/opengl/Makefile \
|
|
)
|