2009-05-07 16:38:06 +04:00
|
|
|
dnl
|
|
|
|
dnl Check whether the g_module_* family of functions works
|
|
|
|
dnl on this system. We need to know that at the compile time to
|
|
|
|
dnl decide whether to link with X11.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN([AC_G_MODULE_SUPPORTED], [
|
|
|
|
|
2010-11-30 22:13:16 +03:00
|
|
|
g_module_supported=""
|
|
|
|
if test x"$no_x" = xyes; then
|
|
|
|
textmode_x11_support="no"
|
|
|
|
else
|
|
|
|
found_gmodule=no
|
|
|
|
PKG_CHECK_MODULES(GMODULE, [gmodule-no-export-2.0 >= 2.8], [found_gmodule=yes], [:])
|
|
|
|
if test x"$found_gmodule" = xyes; then
|
|
|
|
g_module_supported="gmodule-no-export-2.0"
|
|
|
|
else
|
|
|
|
dnl try fallback to the generic gmodule
|
|
|
|
PKG_CHECK_MODULES(GMODULE, [gmodule-2.0 >= 2.8], [found_gmodule=yes], [:])
|
|
|
|
if test x"$found_gmodule" = xyes; then
|
|
|
|
g_module_supported="gmodule-2.0"
|
|
|
|
fi
|
2010-03-30 17:10:44 +04:00
|
|
|
fi
|
2010-11-30 22:13:16 +03:00
|
|
|
|
|
|
|
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
|
|
|
|
case x"$g_module_supported" in
|
|
|
|
xgmodule-no-export-2.0|xgmodule-2.0)
|
|
|
|
if test x`$PKG_CONFIG --variable=gmodule_supported "$g_module_supported"` = xtrue; then
|
|
|
|
AC_DEFINE([HAVE_GMODULE], [1], [Defined if gmodule functionality is supported])
|
|
|
|
else
|
|
|
|
g_module_supported=""
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
MCLIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
|
|
|
|
g_module_supported=""
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
AC_DEFINE([HAVE_TEXTMODE_X11_SUPPORT], [1],
|
|
|
|
[Define to enable getting events from X Window System])
|
|
|
|
textmode_x11_support="yes"
|
2010-03-30 17:10:44 +04:00
|
|
|
fi
|
2010-11-30 22:13:16 +03:00
|
|
|
|
|
|
|
AM_CONDITIONAL([HAVE_GMODULE], [test x"$g_module_supported" != x])
|
2011-03-04 17:00:45 +03:00
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Try to find static libraries for glib and gmodule.
|
|
|
|
dnl
|
|
|
|
if test x$with_glib_static = xyes; then
|
|
|
|
new_GLIB_LIBS=
|
|
|
|
for i in $GLIB_LIBS; do
|
|
|
|
case x$i in
|
|
|
|
x-lglib*)
|
|
|
|
lib=glib ;;
|
|
|
|
x-lgmodule*)
|
|
|
|
lib=gmodule ;;
|
|
|
|
*)
|
|
|
|
lib=
|
|
|
|
add="$i" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if test -n "$lib"; then
|
|
|
|
lib1=`echo $i | sed 's/^-l//'`
|
|
|
|
if test -f "$GLIB_LIBDIR/lib${lib1}.a"; then
|
|
|
|
add="$GLIB_LIBDIR/lib${lib1}.a"
|
|
|
|
else
|
|
|
|
if test -f "$GLIB_LIBDIR/lib${lib}.a"; then
|
|
|
|
add="$GLIB_LIBDIR/lib${lib}.a"
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR([Cannot find static $lib])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
new_GLIB_LIBS="$new_GLIB_LIBS $add"
|
|
|
|
done
|
|
|
|
GLIB_LIBS="$new_GLIB_LIBS"
|
|
|
|
fi
|
|
|
|
|
2009-05-07 16:38:06 +04:00
|
|
|
])
|
2011-03-04 17:00:45 +03:00
|
|
|
|
|
|
|
AC_DEFUN([AC_CHECK_GLIB], [
|
|
|
|
dnl
|
|
|
|
dnl First try glib 2.x.
|
|
|
|
dnl Keep this check close to the beginning, so that the users
|
|
|
|
dnl without any glib won't have their time wasted by other checks.
|
|
|
|
dnl
|
|
|
|
|
|
|
|
AC_ARG_WITH([glib_static],
|
|
|
|
AC_HELP_STRING([--with-glib-static],[Link glib statically [[no]]]))
|
|
|
|
|
|
|
|
glib_found=no
|
|
|
|
PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.8], [glib_found=yes], [:])
|
|
|
|
if test x"$glib_found" = xno; then
|
|
|
|
AC_MSG_ERROR([glib-2.0 not found or version too old (must be >= 2.8)])
|
|
|
|
fi
|
|
|
|
|
|
|
|
])
|
|
|
|
|