From 70025a9b52988fca3bf630ada7306a379ea5e81a Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Wed, 15 Jan 2003 01:07:09 +0000 Subject: IRIX uses libns_winbind.so instead of libnss_winbind.so (This used to be commit 04adfa001b616f0e4b765e29cb8be9e8531eeb7c) --- source3/configure.in | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'source3/configure.in') 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 -- cgit