gambas-source-code/gb.qte/configure.ac
Benoît Minisini 7323ee03a3 [CONFIGURATION]
* BUG: Fix the configuration of gb.image.info.

[INTERPRETER]
* NEW: The GB.LoadFile() and GB.ReleaseFile() API have changed. Now they 
  always use memory mapping instead of loading the file in memory.

[GB.IMAGE.INFO]
* BUG: Now ImageStat() works with the "~" shortcut in path names.


git-svn-id: svn://localhost/gambas/trunk@1748 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-12-28 22:41:55 +00:00

36 lines
910 B
Text

dnl ---- configure.ac for gb.qte
AC_INIT(configure.ac)
GB_INIT(gb.qte)
AC_PROG_LIBTOOL
AC_ARG_ENABLE(
qte-translation,
[ --enable-qt-translation use qt/embedded 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/Embedded translation])
fi
GB_FIND_QT_MOC
AC_DEFINE(NO_X_WINDOW, 1, [No X-Window system])
GB_COMPONENT(
qte,
QTE,
[QT/Embedded component],
[src],
[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(libqte-mt.$SHLIBEXT, /usr/local /opt /usr/X11 /usr/X11R6 /usr/pkg /usr, lib qt*/lib qt/*/lib lib/qt*/lib, libqte-mt.so.3)],
[$CXX_LIB $THREAD_LIB -lqte-mt],
[$THREAD_INC])
AC_OUTPUT( \
Makefile \
src/Makefile \
src/ext/Makefile \
)