libglib2.mk 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #############################################################
  2. #
  3. # libglib2
  4. #
  5. #############################################################
  6. LIBGLIB2_VERSION_MAJOR = 2.16
  7. LIBGLIB2_VERSION_MINOR = 6
  8. LIBGLIB2_VERSION = $(LIBGLIB2_VERSION_MAJOR).$(LIBGLIB2_VERSION_MINOR)
  9. LIBGLIB2_SOURCE = glib-$(LIBGLIB2_VERSION).tar.bz2
  10. LIBGLIB2_SITE = http://ftp.gtk.org/pub/glib/$(LIBGLIB2_VERSION_MAJOR)
  11. LIBGLIB2_AUTORECONF = NO
  12. LIBGLIB2_INSTALL_STAGING = YES
  13. LIBGLIB2_INSTALL_TARGET = YES
  14. LIBGLIB2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
  15. # detect install prefix of host glib development stuff
  16. HOST_GLIB_BIN:=`dirname $(shell which glib-genmarshal || echo /usr/bin/glib-genmarshal)`
  17. HOST_GLIB:=$(shell dirname $(HOST_GLIB_BIN) || echo /usr)
  18. LIBGLIB2_CONF_ENV = \
  19. ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
  20. glib_cv_uscore=no ac_cv_func_strtod=yes \
  21. ac_fsusage_space=yes fu_cv_sys_stat_statfs2_bsize=yes \
  22. ac_cv_func_closedir_void=no ac_cv_func_getloadavg=no \
  23. ac_cv_lib_util_getloadavg=no ac_cv_lib_getloadavg_getloadavg=no \
  24. ac_cv_func_getgroups=yes ac_cv_func_getgroups_works=yes \
  25. ac_cv_func_chown_works=yes ac_cv_have_decl_euidaccess=no \
  26. ac_cv_func_euidaccess=no ac_cv_have_decl_strnlen=yes \
  27. ac_cv_func_strnlen_working=yes ac_cv_func_lstat_dereferences_slashed_symlink=yes \
  28. ac_cv_func_lstat_empty_string_bug=no ac_cv_func_stat_empty_string_bug=no \
  29. vb_cv_func_rename_trailing_slash_bug=no ac_cv_have_decl_nanosleep=yes \
  30. jm_cv_func_nanosleep_works=yes gl_cv_func_working_utimes=yes \
  31. ac_cv_func_utime_null=yes ac_cv_have_decl_strerror_r=yes \
  32. ac_cv_func_strerror_r_char_p=no jm_cv_func_svid_putenv=yes \
  33. ac_cv_func_getcwd_null=yes ac_cv_func_getdelim=yes \
  34. ac_cv_func_mkstemp=yes utils_cv_func_mkstemp_limitations=no \
  35. utils_cv_func_mkdir_trailing_slash_bug=no \
  36. ac_cv_have_decl_malloc=yes gl_cv_func_malloc_0_nonnull=yes \
  37. ac_cv_func_malloc_0_nonnull=yes ac_cv_func_calloc_0_nonnull=yes \
  38. ac_cv_func_realloc_0_nonnull=yes jm_cv_func_gettimeofday_clobber=no \
  39. gl_cv_func_working_readdir=yes jm_ac_cv_func_link_follows_symlink=no \
  40. utils_cv_localtime_cache=no ac_cv_struct_st_mtim_nsec=no \
  41. gl_cv_func_tzset_clobber=no gl_cv_func_getcwd_null=yes \
  42. gl_cv_func_getcwd_path_max=yes ac_cv_func_fnmatch_gnu=yes \
  43. am_getline_needs_run_time_check=no am_cv_func_working_getline=yes \
  44. gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \
  45. ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
  46. ac_use_included_regex=no gl_cv_c_restrict=no \
  47. ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_prog_F77=no \
  48. ac_cv_func_posix_getgrgid_r=no \
  49. gt_cv_c_wchar_t=$(if $(BR2_USE_WCHAR),yes,no)
  50. LIBGLIB2_CONF_OPT = --enable-shared \
  51. --enable-static
  52. LIBGLIB2_DEPENDENCIES = uclibc gettext libintl pkgconfig
  53. ifneq ($(BR2_ENABLE_LOCALE),y)
  54. LIBGLIB2_DEPENDENCIES+=libiconv
  55. endif
  56. ifeq ($(BR2_PACKAGE_LIBICONV),y)
  57. LIBGLIB2_CONF_OPT += --with-libiconv=gnu
  58. LIBGLIB2_DEPENDENCIES+=libiconv
  59. endif
  60. $(eval $(call AUTOTARGETS,package,libglib2))
  61. # we NEED a host glib-genmarshal
  62. ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
  63. ifeq ($(wildcard $(HOST_GLIB)/bin/glib-genmarshal),)
  64. $(error Host glib-genmarshal not found. Please install glib development package on your host (something like libglib2.0-dev))
  65. endif
  66. endif