From: Gustavo Zacarias Date: Tue, 14 Oct 2014 23:29:06 +0000 (-0300) Subject: samba: fix config symbols X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1f7bef035f772ba56d510c246c21482b21487183;p=buildroot.git samba: fix config symbols Some of the configure cache symbols changed name because some routines were moved to libreplace instead of samba itself. So change the naming for those affected so that samba can work nicely again with some configuration directives (like interfaces = X). Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/samba/samba.mk b/package/samba/samba.mk index 03b901e0da..5472edd7ed 100644 --- a/package/samba/samba.mk +++ b/package/samba/samba.mk @@ -19,13 +19,14 @@ SAMBA_DEPENDENCIES = popt \ SAMBA_CONF_ENV = \ ac_cv_file__proc_sys_kernel_core_pattern=yes \ - samba_cv_HAVE_GETTIMEOFDAY_TZ=yes \ + libreplace_cv_HAVE_GETTIMEOFDAY_TZ=yes \ samba_cv_USE_SETREUID=yes \ samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes \ - samba_cv_HAVE_IFACE_IFCONF=yes \ - samba_cv_HAVE_MMAP=yes \ + libreplace_cv_HAVE_IFACE_GETIFADDRS=yes \ + libreplace_cv_HAVE_IFACE_IFCONF=yes \ + libreplace_cv_HAVE_MMAP=yes \ samba_cv_HAVE_FCNTL_LOCK=yes \ - samba_cv_HAVE_SECURE_MKSTEMP=yes \ + libreplace_cv_HAVE_SECURE_MKSTEMP=yes \ samba_cv_CC_NEGATIVE_ENUM_VALUES=yes \ samba_cv_fpie=no \ libreplace_cv_HAVE_IPV6=$(if $(BR2_INET_IPV6),yes,no) \