summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2003-01-15 01:07:09 +0000
committerHerb Lewis <herb@samba.org>2003-01-15 01:07:09 +0000
commit70025a9b52988fca3bf630ada7306a379ea5e81a (patch)
tree5f8edc1b77a08cdd3cb2645f6ec5640c871a374d /source3/configure.in
parent55b8c949aa4220c266b55a9fa07797d0abf917e7 (diff)
downloadsamba-70025a9b52988fca3bf630ada7306a379ea5e81a.tar.gz
samba-70025a9b52988fca3bf630ada7306a379ea5e81a.tar.bz2
samba-70025a9b52988fca3bf630ada7306a379ea5e81a.zip
IRIX uses libns_winbind.so instead of libnss_winbind.so
(This used to be commit 04adfa001b616f0e4b765e29cb8be9e8531eeb7c)
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 d9f3ffe9cb..d133ce3250 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -3050,7 +3050,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