1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Forgot to merge configure.in changes for winbind client tidyup.

(This used to be commit 5e9c494a241102805e76461197dc8b5afcac64d9)
This commit is contained in:
Tim Potter 2003-04-02 06:26:55 +00:00
parent 7e90c8a3b3
commit d2912967f4

View File

@ -3265,19 +3265,28 @@ AC_MSG_CHECKING(whether to build winbind)
# Initially, the value of $host_os decides whether winbind is supported # Initially, the value of $host_os decides whether winbind is supported
HAVE_WINBIND=yes
case "$host_os" in case "$host_os" in
*linux*|*irix*) *linux*)
HAVE_WINBIND=yes WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_linux.o"
;;
*irix*)
WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_irix.o"
;; ;;
*solaris*) *solaris*)
HAVE_WINBIND=yes # Solaris winbind client is implemented as a wrapper around
WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o" # the Linux version.
WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o \
nsswitch/winbind_nss_linux.o"
WINBIND_NSS_EXTRA_LIBS="-lsocket" WINBIND_NSS_EXTRA_LIBS="-lsocket"
;; ;;
*hpux11*) *hpux11*)
HAVE_WINBIND=yes
WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o" WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o"
;; ;;
*aix*)
WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_aix.o"
;;
*) *)
HAVE_WINBIND=no HAVE_WINBIND=no
winbind_no_reason=", unsupported on $host_os" winbind_no_reason=", unsupported on $host_os"