7ba5e38629
Without intltool, configuration fails with: checking for intltool >= 0.35.0... ./configure: line 28714: intltool-update: command not found found Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
153 lines
4.6 KiB
Makefile
153 lines
4.6 KiB
Makefile
#############################################################
|
|
#
|
|
# avahi (zeroconf implementation)
|
|
#
|
|
#############################################################
|
|
#
|
|
# This program is free software; you can redistribute it
|
|
# and/or modify it under the terms of the GNU Lesser General
|
|
# Public License as published by the Free Software Foundation
|
|
# either version 2.1 of the License, or (at your option) any
|
|
# later version.
|
|
|
|
AVAHI_VERSION = 0.6.23
|
|
AVAHI_SOURCE = avahi-$(AVAHI_VERSION).tar.gz
|
|
AVAHI_SITE = http://www.avahi.org/download/
|
|
AVAHI_INSTALL_STAGING = YES
|
|
AVAHI_INSTALL_TARGET = YES
|
|
|
|
AVAHI_CONF_ENV = ac_cv_func_strtod=yes \
|
|
ac_fsusage_space=yes \
|
|
fu_cv_sys_stat_statfs2_bsize=yes \
|
|
ac_cv_func_closedir_void=no \
|
|
ac_cv_func_getloadavg=no \
|
|
ac_cv_lib_util_getloadavg=no \
|
|
ac_cv_lib_getloadavg_getloadavg=no \
|
|
ac_cv_func_getgroups=yes \
|
|
ac_cv_func_getgroups_works=yes \
|
|
ac_cv_func_chown_works=yes \
|
|
ac_cv_have_decl_euidaccess=no \
|
|
ac_cv_func_euidaccess=no \
|
|
ac_cv_have_decl_strnlen=yes \
|
|
ac_cv_func_strnlen_working=yes \
|
|
ac_cv_func_lstat_dereferences_slashed_symlink=yes \
|
|
ac_cv_func_lstat_empty_string_bug=no \
|
|
ac_cv_func_stat_empty_string_bug=no \
|
|
vb_cv_func_rename_trailing_slash_bug=no \
|
|
ac_cv_have_decl_nanosleep=yes \
|
|
jm_cv_func_nanosleep_works=yes \
|
|
gl_cv_func_working_utimes=yes \
|
|
ac_cv_func_utime_null=yes \
|
|
ac_cv_have_decl_strerror_r=yes \
|
|
ac_cv_func_strerror_r_char_p=no \
|
|
jm_cv_func_svid_putenv=yes \
|
|
ac_cv_func_getcwd_null=yes \
|
|
ac_cv_func_getdelim=yes \
|
|
ac_cv_func_mkstemp=yes \
|
|
utils_cv_func_mkstemp_limitations=no \
|
|
utils_cv_func_mkdir_trailing_slash_bug=no \
|
|
jm_cv_func_gettimeofday_clobber=no \
|
|
am_cv_func_working_getline=yes \
|
|
gl_cv_func_working_readdir=yes \
|
|
jm_ac_cv_func_link_follows_symlink=no \
|
|
utils_cv_localtime_cache=no \
|
|
ac_cv_struct_st_mtim_nsec=no \
|
|
gl_cv_func_tzset_clobber=no \
|
|
gl_cv_func_getcwd_null=yes \
|
|
gl_cv_func_getcwd_path_max=yes \
|
|
ac_cv_func_fnmatch_gnu=yes \
|
|
am_getline_needs_run_time_check=no \
|
|
am_cv_func_working_getline=yes \
|
|
gl_cv_func_mkdir_trailing_slash_bug=no \
|
|
gl_cv_func_mkstemp_limitations=no \
|
|
ac_cv_func_working_mktime=yes \
|
|
jm_cv_func_working_re_compile_pattern=yes \
|
|
ac_use_included_regex=no \
|
|
avahi_cv_sys_cxx_works=yes
|
|
|
|
AVAHI_CONF_OPT = --localstatedir=/var \
|
|
--disable-qt3 \
|
|
--disable-qt4 \
|
|
--disable-gdbm \
|
|
--disable-python-dbus \
|
|
--disable-pygtk \
|
|
--disable-mono \
|
|
--disable-monodoc \
|
|
--disable-stack-protector \
|
|
--with-distro=none \
|
|
$(if $(BR2_HAVE_MANPAGES),--enable,--disable)-manpages \
|
|
$(if $(BR2_PACKAGE_AVAHI_AUTOIPD),--enable,--disable)-autoipd \
|
|
--with-avahi-user=default \
|
|
--with-avahi-group=default \
|
|
--with-autoipd-user=default \
|
|
--with-autoipd-group=default
|
|
|
|
AVAHI_DEPENDENCIES = $(if $(BR2_PACKAGE_GETTEXT),gettext) host-intltool
|
|
|
|
ifneq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_AVAHI_AUTOIPD),)
|
|
AVAHI_DEPENDENCIES += libdaemon
|
|
else
|
|
AVAHI_CONF_OPT += --disable-libdaemon
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_AVAHI_DAEMON),y)
|
|
AVAHI_DEPENDENCIES += expat
|
|
AVAHI_CONF_OPT += --with-xml=expat
|
|
else
|
|
AVAHI_CONF_OPT += --with-xml=none
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
|
AVAHI_DEPENDENCIES += dbus
|
|
else
|
|
AVAHI_CONF_OPT += --disable-dbus
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
|
AVAHI_DEPENDENCIES += libglib2
|
|
else
|
|
AVAHI_CONF_OPT += --disable-glib --disable-gobject
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGLADE),y)
|
|
AVAHI_DEPENDENCIES += libglade
|
|
else
|
|
AVAHI_CONF_OPT += --disable-gtk
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
|
AVAHI_CONF_ENV += am_cv_pathless_PYTHON=python \
|
|
am_cv_path_PYTHON=$(PYTHON_TARGET_BINARY) \
|
|
am_cv_python_version=$(PYTHON_VERSION) \
|
|
am_cv_python_platform=linux2 \
|
|
am_cv_python_pythondir=/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \
|
|
am_cv_python_pyexecdir=/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \
|
|
py_cv_mod_socket_=yes
|
|
|
|
AVAHI_DEPENDENCIES += libpython
|
|
AVAHI_CONF_OPT += --enable-python
|
|
else
|
|
AVAHI_CONF_OPT += --disable-python
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBINTL),y)
|
|
AVAHI_DEPENDENCIES += libintl
|
|
AVAHI_MAKE_OPT = LIBS=-lintl
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS,package,avahi))
|
|
|
|
$(AVAHI_HOOK_POST_INSTALL):
|
|
rm -rf $(TARGET_DIR)/etc/init.d/avahi-*
|
|
ifeq ($(BR2_PACKAGE_AVAHI_AUTOIPD),y)
|
|
rm -rf $(TARGET_DIR)/etc/dhcp3/
|
|
$(INSTALL) -D -m 0755 package/avahi/busybox-udhcpc-default.script $(TARGET_DIR)/usr/share/udhcpc/default.script
|
|
$(INSTALL) -m 0755 package/avahi/S05avahi-setup.sh $(TARGET_DIR)/etc/init.d/
|
|
rm -f $(TARGET_DIR)/var/lib/avahi-autoipd
|
|
ln -sf /tmp/avahi-autoipd $(TARGET_DIR)/var/lib/avahi-autoipd
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_AVAHI_DAEMON),y)
|
|
$(INSTALL) -m 0755 package/avahi/S50avahi-daemon $(TARGET_DIR)/etc/init.d/
|
|
endif
|
|
touch $@
|