gambas-source-code/gb.sdl/configure.ac
Benoît Minisini 5e79f7228e [CONFIGURATION]
* BUG: Fix the GB_COMPONENT() macro so that it defines XXX_LDFLAGS and 
  XXX_LIB variables as in the GB_COMPONENT_PKG_CONFIG() macro. The 
  Makefile.am files of components were fixed accordingly.

[GB.DB.FIREBIRD]
* NEW: Switch to ibpp 2.5.3.1.
* BUG: Link the driver to the fbclient library.

[GB.GTK]
* NEW: TreeView.Item.ParentKey and ColumnView.Item.ParentKey were 
  implemented.

[GB.QT]
* NEW: TreeView.Item.ParentKey and ColumnView.Item.ParentKey were 
  implemented.

[GB.QT4]
* NEW: TreeView.Item.ParentKey and ColumnView.Item.ParentKey were 
  implemented. The previous change incorrectly talked about 
  TreeView.ParentKey and ColumnView.ParentKey.


git-svn-id: svn://localhost/gambas/trunk@2066 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2009-07-03 23:41:55 +00:00

42 lines
1,006 B
Text

dnl ---- configure.ac for gb.sdl
AC_INIT(configure.ac)
GB_INIT(gb.sdl)
AC_PROG_LIBTOOL
GB_CHECK_XWINDOW
dnl TODO: add a version test in GB_COMPONENT!
GB_PATH_SDL(1.2.8, [], [touch DISABLED])
dnl check Xcursor support
AC_CHECK_LIB(Xcursor, XcursorLibraryLoadCursor,
[echo -n
LDFLAGS="$LDFLAGS -lXcursor"],
[AC_MSG_WARN([libXcursor not found. Check 'config.log' for more details.])
touch DISABLED],
$X_LIBS)
dnl check Xft support
AC_CHECK_LIB(Xft, XftListFonts,
[echo -n
LDFLAGS="$LDFLAGS -lXft" SDL_CFLAGS="$SDL_CFLAGS `freetype-config --cflags`"],
[AC_MSG_WARN([libXft not found. Check 'config.log' for more details.])
touch DISABLED],
$X_LIBS)
dnl check for SDL libs
GB_COMPONENT(
sdl,
SDL,
[SDL],
[src],
[GB_FIND(SDL_opengl.h SDL.h SDL_image.h, `sdl-config --prefix`, include/SDL)],
[GB_FIND(libSDL_image.$SHLIBEXT , /usr /usr/X11R6 /usr/local `sdl-config --prefix`, lib)],
[$X_LIBS -lSDL_image -lGLU],
[$SDL_CFLAGS])
AC_OUTPUT( \
Makefile \
src/Makefile \
)