diff options
author | Tim Potter <tpot@samba.org> | 2002-03-03 22:49:08 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-03-03 22:49:08 +0000 |
commit | 52b3390ca6f72c7478ededed6aadcabee835e273 (patch) | |
tree | 0bdf74d3e6c1d174638c9e8ff8b843038e168c1d /source3 | |
parent | 14b1ec7ccdf80268f062e95538ee6b8b3882786f (diff) | |
download | samba-52b3390ca6f72c7478ededed6aadcabee835e273.tar.gz samba-52b3390ca6f72c7478ededed6aadcabee835e273.tar.bz2 samba-52b3390ca6f72c7478ededed6aadcabee835e273.zip |
Fixed typo for winbind on solaris and hpux.
I have to say that having to link in winbind_nss_solaris.o for hpux is
slightly dodgy...
(This used to be commit fd172ec603de590dae6c3a91c7baf39c0afebea8)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index 983d587257..76250e3050 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2578,12 +2578,12 @@ case "$host_os" in ;; *solaris*) HAVE_WINBIND=yes - WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris" + WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o" WINBIND_NSS_EXTRA_LIBS="-lsocket" ;; *hpux11*) HAVE_WINBIND=yes - WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris" + WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris.o" ;; *) HAVE_WINBIND=no |