diff options
author | Ira Cooper <ira@samba.org> | 2012-09-30 19:02:13 +0000 |
---|---|---|
committer | Ira Cooper <ira@samba.org> | 2012-09-30 22:56:29 +0200 |
commit | 6dbe0aad260d1f6e46e58871a7ce613ca27d0bf6 (patch) | |
tree | 19aa0e9e14210e4c88575d825e7e7562a612e721 /nsswitch/wscript_build | |
parent | 81805222ec7a652e188bd106199820570c9dcaad (diff) | |
download | samba-6dbe0aad260d1f6e46e58871a7ce613ca27d0bf6.tar.gz |
s3: Fix libnss_winbind.so's build on Illumos/Solaris
Due to not building and linking in the winbind_nss_solaris bits in addition
to the linux bits, nss was broken on Solaris.
Autobuild-User(master): Ira Cooper <ira@samba.org>
Autobuild-Date(master): Sun Sep 30 22:56:30 CEST 2012 on sn-devel-104
Diffstat (limited to 'nsswitch/wscript_build')
-rw-r--r-- | nsswitch/wscript_build | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/nsswitch/wscript_build b/nsswitch/wscript_build index 0802687eebc..3931445ea1b 100644 --- a/nsswitch/wscript_build +++ b/nsswitch/wscript_build @@ -1,4 +1,5 @@ #!/usr/bin/env python +import Utils bld.SAMBA_LIBRARY('winbind-client', source='wb_common.c', @@ -13,13 +14,19 @@ bld.SAMBA_BINARY('nsstest', deps='replace dl' ) - -bld.SAMBA_LIBRARY('nss_winbind', - source='winbind_nss_linux.c', - deps='winbind-client', - realname='libnss_winbind.so.2', - vnum='2') - +if Utils.unversioned_sys_platform() == 'linux': + bld.SAMBA_LIBRARY('nss_winbind', + source='winbind_nss_linux.c', + deps='winbind-client', + realname='libnss_winbind.so.2', + vnum='2') + +if Utils.unversioned_sys_platform() == 'sunos': + bld.SAMBA_LIBRARY('nss_winbind', + source='winbind_nss_solaris.c winbind_nss_linux.c', + deps='winbind-client', + realname='libnss_winbind.so.2', + vnum='2') if bld.CONFIG_SET('WITH_PAM_MODULES') and bld.CONFIG_SET('HAVE_PAM_START'): bld.SAMBA_LIBRARY('pamwinbind', |