Re: [squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-18 Thread Henrik Nordstrom
fre 2006-03-17 klockan 19:31 -0800 skrev Linda W: Mystery solved. My shell _expanded_ control sequences by default in echo. (echo \1 - becomes echo ^A). Apparently there are literals in the configure script like \\1 \\2 that were trying to echo a literal '\1' into a sed script.

Re: [squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-18 Thread Dieter Bloms
Hi, On Fri, Mar 17, Linda W wrote: Based off SuSE9.3 with some updates; linux kernel 2.6.15.5 on pentium3; gcc=3.3.5 (20050117); glibc=2.3.4-23.4 Did you install some packages from other source ? SuSE9.3 came with 2.6.11 kernel. --snip-- ftp pwd 257

Re: [squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-18 Thread Linda W
Henrik Nordstrom wrote: fre 2006-03-17 klockan 19:31 -0800 skrev Linda W: Mystery solved. My shell _expanded_ control sequences by default in echo. (echo \1 - becomes echo ^A). Apparently there are literals in the configure script like \\1 \\2 that were trying to echo a literal '\1' into a

[squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-17 Thread Linda W
Henrik Nordstrom wrote: Only from the main CVS (cvs.squid-cache.org) --- That's what I used: export CVSROOT=':pserver:[EMAIL PROTECTED]:/squid' cvs co [update] squid3 The error messages... this file is generated when you run configure. Or more exacly when configure

Re: [squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-17 Thread Henrik Nordstrom
fre 2006-03-17 klockan 13:49 -0800 skrev Linda W: That's what I started with, but I had problems with (make used gawk to transform input options, but new .gawk script wasn't yet made a part of nightly snapshot..:-) (darned if I do and darned if I don't)). This is supposed to be fixed

Re: [squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-17 Thread Linda W
Henrik Nordstrom wrote: It it, I see a bunch of defines starting with CPPUNIT_ that are broken. They have the embedded control characters (^A and ^B) as though they were place holders for values some script should have filled in: Odd.. Maybe my configure options are sufficiently weird so as

Re: [squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-17 Thread Henrik Nordstrom
fre 2006-03-17 klockan 14:36 -0800 skrev Linda W: configure: ./configure --prefix=/usr \ --sysconfdir=/etc/squid \ --bindir=/usr/sbin \ Have you tried a plain configure without any options at all? Regards Henrik signature.asc Description: Detta är en digitalt signerad

Re: [squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-17 Thread Henrik Nordstrom
fre 2006-03-17 klockan 14:36 -0800 skrev Linda W: configure: ./configure --prefix=/usr \ --sysconfdir=/etc/squid \ --bindir=/usr/sbin \ [...] Copy-pasted your configure line on my Fedora Core 5 test 3 x86_64 box, and it compiles just fine.. -rwxrwxr-x 1 henrik henrik

Re: [squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-17 Thread Linda W
Henrik Nordstrom wrote: Copy-pasted your configure line on my Fedora Core 5 test 3 x86_64 box, and it compiles just fine.. --- Figures. 1. Grab the current snapshot release. --- Ahead of you. Already done (squid-3.0-PRE3-200603017.tar.bz2). 2. Start with just ./configure, without

Re: [squid-users] Re: my CPPUNIT is broken... ;-) ?

2006-03-17 Thread Linda W
Mystery solved. My shell _expanded_ control sequences by default in echo. (echo \1 - becomes echo ^A). Apparently there are literals in the configure script like \\1 \\2 that were trying to echo a literal '\1' into a sed script. Instead it was echoed in as a control-A. Am I misremembering,