diff options
author | Jakub Tymejczyk <jakub@tymejczyk.pl> | 2018-02-21 12:55:31 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-02-24 11:23:46 +0100 |
commit | 316eb26a3a8e4cf84074baa6bbe0d6f905c22941 (patch) | |
tree | 4601ece59c5108b8df6472398cad30245b0849c0 /package/network | |
parent | 92419ab4c774de9b95fcfe0243d554d43deb0a2f (diff) | |
download | upstream-316eb26a3a8e4cf84074baa6bbe0d6f905c22941.tar.gz upstream-316eb26a3a8e4cf84074baa6bbe0d6f905c22941.tar.bz2 upstream-316eb26a3a8e4cf84074baa6bbe0d6f905c22941.zip |
samba36: fix build (issue #5574)
As indicated in #5574 samba fails to build with linker error due to lack
of talloc_* functions when the packet libtalloc also gets build.
According to Makefile it is compiled with "--without-libtalloc" option.
Running ./configure --help shows that there is another option connected
to libtalloc: --enable/disable-external-libtalloc.
Adding this option fixes build.
Signed-off-by: Jakub Tymejczyk <jakub@tymejczyk.pl>
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/services/samba36/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/services/samba36/Makefile b/package/network/services/samba36/Makefile index 42c23b4e8e..55e1428d49 100644 --- a/package/network/services/samba36/Makefile +++ b/package/network/services/samba36/Makefile @@ -101,6 +101,7 @@ CONFIGURE_ARGS += \ --prefix=/ \ --disable-avahi \ --disable-cups \ + --disable-external-libtalloc \ --disable-pie \ --disable-relro \ --disable-static \ |