diff options
| author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-07-23 15:36:19 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-08-02 08:40:03 +0200 |
| commit | 17f6c26590d22365968e7fd0d246b315b255d204 (patch) | |
| tree | 10a9df2655dc36b2f71721555beda594d82f0972 /package/samba4 | |
| parent | 25af7e7bf15ec678a7cedd9e3a1ce4ddde4b61c4 (diff) | |
| download | buildroot-17f6c26590d22365968e7fd0d246b315b255d204.tar.gz buildroot-17f6c26590d22365968e7fd0d246b315b255d204.zip | |
package/samba4: add optional dependency to dbus
samba4 picks up dbus as dependency if it was built before:
Checking for dbus : yes
Checking for header dbus/dbus.h : yes
Checking for library dbus-1 : yes
There is no configure option to control dbus support so we just make
sure dbus is built before samba4 to have reproducible builds.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/samba4')
| -rw-r--r-- | package/samba4/samba4.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/samba4/samba4.mk b/package/samba4/samba4.mk index ffa101b73f..3dbb261b14 100644 --- a/package/samba4/samba4.mk +++ b/package/samba4/samba4.mk @@ -44,6 +44,10 @@ else SAMBA4_CONF_OPTS += --disable-cups endif +ifeq ($(BR2_PACKAGE_DBUS),y) +SAMBA4_DEPENDENCIES += dbus +endif + ifeq ($(BR2_PACKAGE_DBUS)$(BR2_PACKAGE_AVAHI_DAEMON),yy) SAMBA4_CONF_OPTS += --enable-avahi SAMBA4_DEPENDENCIES += avahi |

