diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-04-30 14:14:33 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-04-30 14:14:33 +0000 |
commit | 356d59966256b26cdda6e735a5d4a8537283ef31 (patch) | |
tree | e3f0b65ad339b8ac64453e87cf9caf897c1e3e9e | |
parent | 24e663ab35cd5f9359f432eb47323f3bdc11216c (diff) | |
download | samba-356d59966256b26cdda6e735a5d4a8537283ef31.tar.gz samba-356d59966256b26cdda6e735a5d4a8537283ef31.tar.bz2 samba-356d59966256b26cdda6e735a5d4a8537283ef31.zip |
Try to fix IRIX build - add quotes and never call libns_winbind by name - we
should only set that name once.
(This used to be commit 34f15bff6f4f847eb900174793dcbc638f96a5bd)
-rw-r--r-- | source3/Makefile.in | 4 | ||||
-rw-r--r-- | source3/configure.in | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 64e74fe10d..4f08187f33 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -962,7 +962,7 @@ nsswitch/libnss_wins.@SHLIBEXT@: $(NSS_OBJ) @SONAMEFLAG@`basename $@` bin/winbindd@EXEEXT@: $(WINBINDD_OBJ) @BUILD_POPT@ bin/.dummy - @echo Linking $@ + @echo "Linking $@" @$(LINK) -o $@ $(WINBINDD_OBJ) $(DYNEXP) $(LIBS) @POPTLIBS@ $(ADSLIBS) \ @LDAP_LIBS@ @@ -972,7 +972,7 @@ nsswitch/@WINBIND_NSS@.@SHLIBEXT@: $(WINBIND_NSS_PICOBJS) @WINBIND_NSS_EXTRA_LIBS@ @SONAMEFLAG@`basename $@` nsswitch/pam_winbind.@SHLIBEXT@: $(PAM_WINBIND_OBJ) bin/.dummy - @echo Linking $@ + @echo "Linking $@" @$(SHLD) $(LDSHFLAGS) -o $@ $(PAM_WINBIND_OBJ) \ @SONAMEFLAG@`basename $@` -lpam diff --git a/source3/configure.in b/source3/configure.in index fa9393d952..c568fc17d5 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -3270,10 +3270,10 @@ if test x"$HAVE_WINBIND" = x"yes"; then if test x"$BLDSHARED" = x"true"; then case "$host_os" in *irix*) - SHLIB_PROGS="$SHLIB_PROGS nsswitch/libns_winbind.$SHLIBEXT" + SHLIB_PROGS="$SHLIB_PROGS nsswitch/$WINBIND_NSS.$SHLIBEXT" ;; *) - SHLIB_PROGS="$SHLIB_PROGS nsswitch/libnss_winbind.$SHLIBEXT" + SHLIB_PROGS="$SHLIB_PROGS nsswitch/$WINBIND_NSS.$SHLIBEXT" ;; esac if test x"$with_pam" = x"yes"; then |