You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1015 B

  1. --- a/configure.ac
  2. +++ b/configure.ac
  3. @@ -159,12 +159,21 @@ AS_IF([test "x$enable_android" = "xyes"], [
  4. dnl -----------------------------------------------
  5. dnl check for glib support
  6. dnl -----------------------------------------------
  7. - PKG_CHECK_MODULES([GLIB], [glib-2.0], [
  8. - AC_SUBST(GLIB_CFLAGS)
  9. - AC_SUBST(GLIB_LIBS)
  10. - AC_DEFINE(HAVE_GLIB, [1], ["glib library is available"])
  11. - REQUIRES_LIBS="$REQUIRES_LIBS glib-2.0"
  12. - ], [
  13. + AC_ARG_WITH([glib], [AS_HELP_STRING([--without-glib], [Disable linking to glib-2.0 library])], [with_glib=no], [with_glib=yes])
  14. + AS_IF([test "x$with_glib" != xno],
  15. + [
  16. + PKG_CHECK_MODULES([GLIB], [glib-2.0], [
  17. + AC_SUBST(GLIB_CFLAGS)
  18. + AC_SUBST(GLIB_LIBS)
  19. + AC_DEFINE(HAVE_GLIB, [1], ["glib library is available"])
  20. + REQUIRES_LIBS="$REQUIRES_LIBS glib-2.0"
  21. + ], [
  22. + with_glib=no
  23. + ])
  24. + ], [])
  25. +
  26. + AS_IF([test "x$with_glib" = xno],
  27. + [
  28. AS_IF([test "x$has_endian_h" = "xyes"],[
  29. AC_MSG_NOTICE([use endian.h for endianess conversion])
  30. ],[
  31. --
  32. 1.9.1