summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2003-01-15 01:05:35 +0000
committerHerb Lewis <herb@samba.org>2003-01-15 01:05:35 +0000
commita84db36fae74cf0a6b40bec9ae604e3e47172082 (patch)
tree593519c2c52a39cb227c50aca3ec7c1aababb5b2 /source3/configure.in
parent74d4198a9c848feb3a2502a5cb5baf5c25bfca40 (diff)
downloadsamba-a84db36fae74cf0a6b40bec9ae604e3e47172082.tar.gz
samba-a84db36fae74cf0a6b40bec9ae604e3e47172082.tar.bz2
samba-a84db36fae74cf0a6b40bec9ae604e3e47172082.zip
IRIX uses libns_winbind.so instead of libnss_winbind.so
(This used to be commit 50adb8cc1074e9bedac365a92db96c5f01f30223)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in
index a8ae1c760e..402e739c00 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -3069,7 +3069,14 @@ if test x"$HAVE_WINBIND" = x"yes"; then
EXTRA_BIN_PROGS="$EXTRA_BIN_PROGS bin/wbinfo\$(EXEEXT)"
EXTRA_SBIN_PROGS="$EXTRA_SBIN_PROGS bin/winbindd\$(EXEEXT)"
if test x"$BLDSHARED" = x"true"; then
- SHLIB_PROGS="$SHLIB_PROGS nsswitch/libnss_winbind.so"
+ case "$host_os" in
+ *irix*)
+ SHLIB_PROGS="$SHLIB_PROGS nsswitch/libns_winbind.so"
+ ;;
+ *)
+ SHLIB_PROGS="$SHLIB_PROGS nsswitch/libnss_winbind.so"
+ ;;
+ esac
if test x"$with_pam" = x"yes"; then
SHLIB_PROGS="$SHLIB_PROGS nsswitch/pam_winbind.so"
fi