Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-08 Thread Henrik Nordstrom
The mentioned exec_prefix dependent thing was the culpit now.. I ended up removing that, resulting in the attached patch, but that CPPFLAGS and LDFLAGS segment looks to me like it belongs in Makefile.am rather than configure.. Regards Henrik tis 2009-09-08 klockan 16:32 +0200 skrev Henrik

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-08 Thread Markus Moeller
I don't remember exactly why I added it. I think it was because I originally had it as a standalone configure with the option to have libs and includes in exec_prefix/lib and exec_prefix/include where exec_prefix is the squid install path. So I think for the squid inclusion the patch is

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-08 Thread Henrik Nordstrom
tis 2009-09-08 klockan 19:05 +0100 skrev Markus Moeller: I don't remember exactly why I added it. I think it was because I originally had it as a standalone configure with the option to have libs and includes in exec_prefix/lib and exec_prefix/include where exec_prefix is the squid install

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-07 Thread Markus Moeller
How about the attached ? Markus Henrik Nordstrom hen...@henriknordstrom.net wrote in message news:1252272029.23776.54.ca...@henriknordstrom.net... The patch had been somewhat corrupted in flight so had to apply it by hand, but running a test now. It's no/lib it is complaining on. Seem it

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-06 Thread Markus Moeller
Did this fix it ? You talk about -Rno/lib. I only saw -RNONE/lib. If there is the case of no then I need to check for no in the two ifs. Markus Markus Moeller hua...@moeller.plus.com wrote in message news:h7scl8$r2...@ger.gmane.org... This should fix it: --- configure.in2009-09-04

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-06 Thread Henrik Nordstrom
The patch had been somewhat corrupted in flight so had to apply it by hand, but running a test now. It's no/lib it is complaining on. Seem it comes from the system default test where check_mit / check_heimdal is called with a random $enableval from being called outside any AC_ARG_ENABLE macro..

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-06 Thread Markus Moeller
Thank you for the info. I tested on FreeBSD 7/Fedora 11/OpenSuse 11.1 and I didn't see it, but I'll check. Markus - Original Message - From: Henrik Nordstrom hen...@henriknordstrom.net To: Markus Moeller hua...@moeller.plus.com Cc: squid-dev@squid-cache.org Sent: Sunday, September

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-04 Thread Amos Jeffries
Markus Moeller wrote: Henrik, I updated the patch. I also said that I removed the configure from squid_kerb_auth by replacing the whole squid_kerb_auth directory with the attached tar file (to the previous post) which hopefully fixes the fedora build. Markus, these changes won't help

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-04 Thread Henrik Nordstrom
lör 2009-09-05 klockan 01:33 +1200 skrev Amos Jeffries: Markus, these changes won't help the Fedora build with Squid-3.1 frozen. That will require a minimal change of probably just the configure.in. Squid-3.1 has now been packaged for Fedora 12, but so far without squid_kerb_auth due to

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-04 Thread Markus Moeller
Henrik Nordstrom hen...@henriknordstrom.net wrote in message news:1252072098.571.16.ca...@henriknordstrom.net... lör 2009-09-05 klockan 01:33 +1200 skrev Amos Jeffries: Markus, these changes won't help the Fedora build with Squid-3.1 frozen. That will require a minimal change of probably

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-04 Thread Markus Moeller
This should fix it: --- configure.in2009-09-04 02:06:24.0 +0100 +++ configure.in.new2009-09-05 01:47:34.875859258 +0100 @@ -424,8 +424,12 @@ [ squid_dir=$withval ] ) +if test x$exec_prefix != xNONE; then eval ac_p_include=$includedir CPPFLAGS=$CPPFLAGS -I$ac_p_include

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-01 Thread Markus Moeller
Henrik, I updated the patch. I also said that I removed the configure from squid_kerb_auth by replacing the whole squid_kerb_auth directory with the attached tar file (to the previous post) which hopefully fixes the fedora build. Thank you Markus Henrik Nordstrom

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-01 Thread Amos Jeffries
On Tue, 1 Sep 2009 19:55:47 +0100, Markus Moeller hua...@moeller.plus.com wrote: Henrik, I updated the patch. I also said that I removed the configure from squid_kerb_auth by replacing the whole squid_kerb_auth directory with the attached tar file (to the previous post) which

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-09-01 Thread Markus Moeller
Amos Jeffries squ...@treenet.co.nz wrote in message news:3f72f4fcc973e75a663a72a587547...@mail.treenet.co.nz... On Tue, 1 Sep 2009 19:55:47 +0100, Markus Moeller hua...@moeller.plus.com wrote: Henrik, I updated the patch. I also said that I removed the configure from squid_kerb_auth by

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-08-31 Thread Henrik Nordstrom
Needs quoting: +KRB5INCS=`$krb5confpath --cflags krb5 2/dev/null` +KRB5LIBS=`$krb5confpath --libs krb5 2/dev/null` (seen twice, Solaris generic) Would also be nice if you could update squid_kerb_auth/configure with this simplified kerberos configure dance. The

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-08-25 Thread Amos Jeffries
Markus Moeller wrote: In some setups the upstream proxy requires a secue authentication method (Negotiate, NTLM). The attached patches (2.7 and 3.0) allow this with Negotiate. Regards Markus Hi Markus, Good to see this feature appearing. Just a few things to fix up before this can go in:

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-08-25 Thread Markus Moeller
Amos Jeffries squ...@treenet.co.nz wrote in message news:4a93cd1b.9030...@treenet.co.nz... Markus Moeller wrote: In some setups the upstream proxy requires a secue authentication method (Negotiate, NTLM). The attached patches (2.7 and 3.0) allow this with Negotiate. Regards Markus Hi

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-08-08 Thread Markus Moeller
Sorry,but I forgot to change putenv to setenv. Patches are attached. Markus Henrik Nordstrom hen...@henriknordstrom.net wrote in message news:1249178627.13368.4.ca...@henriknordstrom.net... lör 2009-08-01 klockan 16:41 +0100 skrev Markus Moeller: In some setups the upstream proxy requires a

Re: Patch to authenticate securely to upstream ISA server(or others)

2009-08-01 Thread Henrik Nordstrom
lör 2009-08-01 klockan 16:41 +0100 skrev Markus Moeller: In some setups the upstream proxy requires a secue authentication method (Negotiate, NTLM). The attached patches (2.7 and 3.0) allow this with Negotiate. Imported to Squid-2 with the following cosmetic modifications * Your