gambas-source-code/gb.desktop.x11/configure.ac
Benoît Minisini eb9e30e1ac [GB.DESKTOP]
* NEW: 'gb.desktop' is now a pure Gambas component that relies on 
  'gb.desktop.x11' and 'gb.desktop.gnome.keyring'.

[GB.DESKTOP.X11]
* NEW: This new component offers a bunch of helper functions that allows to
  deal with the low-level X11 library.

[GB.DESKTOP.GNOME]
* NEW: This component has been renamed as 'gb.desktop.gnome.keyring'.

[GB.DESKTOP.GNOME.KEYRING]
* NEW: This component was named 'gb.desktop.gnome' before. It allows to 
  store and retrieve passwords from the GNOME 2 keyring.

[GB.FORM]
* OPT: A little optimization in the DirChooser control.


git-svn-id: svn://localhost/gambas/trunk@6260 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-05-12 23:38:46 +00:00

23 lines
502 B
Text

dnl ---- configure.ac for gb.desktop.x11
m4_include([../version.m4])
AC_INIT(gambas3-gb-desktop-x11, GB_VERSION, GB_MAIL, [], GB_URL)
AC_CONFIG_MACRO_DIR([m4])
GB_INIT(gb.desktop.x11)
AC_PROG_LIBTOOL
GB_CHECK_XWINDOW
AC_CHECK_LIB(Xtst, XTestQueryExtension, [X_LIBS="$X_LIBS -lXtst"], [touch DISABLED], [$X_LIBS])
GB_COMPONENT(
desktop_x11,
DESKTOP_X11,
gb.desktop.x11,
[src],
[],
[],
[$C_LIB $THREAD_LIB $X_LIBS],
[$THREAD_INC])
AC_OUTPUT( Makefile src/Makefile )
GB_PRINT_MESSAGES