From: hno <> Date: Thu, 23 May 2002 20:01:19 +0000 (+0000) Subject: The winbind helper needs XTRA_LIBS, just as mostly everything else... X-Git-Tag: SQUID_3_0_PRE1~1001 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e63945c4bbc1dacb8136df3626713ccf471d257;p=thirdparty%2Fsquid.git The winbind helper needs XTRA_LIBS, just as mostly everything else... (-lsocket on Solaris and many other platform dependencies are herein) --- diff --git a/helpers/basic_auth/winbind/Makefile.am b/helpers/basic_auth/winbind/Makefile.am index 2213bdc2e6..49745ef686 100644 --- a/helpers/basic_auth/winbind/Makefile.am +++ b/helpers/basic_auth/winbind/Makefile.am @@ -1,11 +1,11 @@ # # Makefile for the Squid Object Cache server # -# $Id: Makefile.am,v 1.3 2002/05/20 01:46:20 hno Exp $ +# $Id: Makefile.am,v 1.4 2002/05/23 14:01:19 hno Exp $ # libexec_PROGRAMS = wb_auth wb_auth_SOURCES = wb_basic_auth.c wb_common.c samba_nss.h winbindd_nss.h wbntlm.h winbind_nss_config.h INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \ -I$(top_srcdir)/src -LDADD = -L$(top_builddir)/lib -lmiscutil -lntlmauth +LDADD = -L$(top_builddir)/lib -lmiscutil -lntlmauth $(XTRA_LIBS) diff --git a/helpers/ntlm_auth/winbind/Makefile.am b/helpers/ntlm_auth/winbind/Makefile.am index 72da0dd336..934ea64d07 100644 --- a/helpers/ntlm_auth/winbind/Makefile.am +++ b/helpers/ntlm_auth/winbind/Makefile.am @@ -1,7 +1,7 @@ # # Makefile for the Squid Object Cache server # -# $Id: Makefile.am,v 1.4 2002/05/20 02:03:57 hno Exp $ +# $Id: Makefile.am,v 1.5 2002/05/23 14:01:20 hno Exp $ # libexec_PROGRAMS = wb_ntlmauth @@ -11,4 +11,4 @@ EXTRA_DIST = \ patches/winbind_nss_config.patch INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \ -I$(top_srcdir)/src -LDADD = -L$(top_builddir)/lib -lmiscutil -lntlmauth -lm +LDADD = -L$(top_builddir)/lib -lmiscutil -lntlmauth $(XTRA_LIBS)