mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-06 12:04:16 +00:00
Since waf configure infrastructure is a body blow compared to reasonable autoconf script from packager point of view, samba support libs need feature-disable-patches. This one is for libtevent removing libcap (introduced by libldap_r) and attr. Signed-off-by: Jens Rehsack <sno@netbsd.org> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
21 lines
1.0 KiB
Diff
21 lines
1.0 KiB
Diff
--- a/lib/replace/wscript 2015-11-18 15:40:19.000000000 +0100
|
|
+++ b/lib/replace/wscript 2015-11-18 15:48:09.000000000 +0100
|
|
@@ -618,8 +618,6 @@
|
|
if not bld.CONFIG_SET('HAVE_INET_ATON'): REPLACE_SOURCE += ' inet_aton.c'
|
|
if not bld.CONFIG_SET('HAVE_INET_NTOP'): REPLACE_SOURCE += ' inet_ntop.c'
|
|
if not bld.CONFIG_SET('HAVE_INET_PTON'): REPLACE_SOURCE += ' inet_pton.c'
|
|
- if not bld.CONFIG_SET('HAVE_GETXATTR') or bld.CONFIG_SET('XATTR_ADDITIONAL_OPTIONS'):
|
|
- REPLACE_SOURCE += ' xattr.c'
|
|
|
|
bld.SAMBA_LIBRARY('replace',
|
|
source=REPLACE_SOURCE,
|
|
@@ -630,7 +628,7 @@
|
|
# at the moment:
|
|
# hide_symbols=bld.BUILTIN_LIBRARY('replace'),
|
|
private_library=True,
|
|
- deps='crypt dl nsl socket rt attr' + extra_libs)
|
|
+ deps='crypt dl nsl socket rt ' + extra_libs)
|
|
|
|
bld.SAMBA_SUBSYSTEM('replace-test',
|
|
source='''test/testsuite.c test/strptime.c
|