gambas-source-code/gb.desktop/configure.ac
Benoît Minisini 79e3644902 [INTERPRETER]
* NEW: Removes some warnings with uid_t on some systems.

[GB.EVAL]
* BUG: Removes the use of a non existing function.

[GB.DESKTOP]
* BUG: Try to enhance the detection of libXtst.


git-svn-id: svn://localhost/gambas/trunk@1220 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-03-21 02:05:59 +00:00

21 lines
385 B
Text

dnl ---- configure.ac for gb.desktop
AC_INIT(configure.ac)
GB_INIT(gb.desktop)
AC_PROG_LIBTOOL
GB_CHECK_XWINDOW
AC_CHECK_LIB(Xtst, XTestQueryExtension, [X_LIBS="$X_LIBS -lXtst"], [touch DISABLED], [$X_LIBS])
GB_COMPONENT(
desktop,
DESKTOP,
[Desktop-neutral routines],
[src],
[],
[],
[$C_LIB $THREAD_LIB $X_LIBS],
[$THREAD_INC ])
AC_OUTPUT( Makefile src/Makefile )