Re: current state of bzr repository

2009-03-29 Thread Alex Rousskov
On 03/27/2009 11:41 AM, Tsantilas Christos wrote: > Amos Jeffries wrote: >>.. >> It's possibly version or system dependant. I've seen this myself, it was >> with g++, on either Solaris, CentOS, Ubuntu, or Debian, don't recall >> exactly which machine. But I have not used any non-gcc compil

Re: linking fs code problems in trunk

2009-03-29 Thread Alex Rousskov
On 03/29/2009 08:22 PM, Alex Rousskov wrote: > On 03/28/2009 06:11 AM, Tsantilas Christos wrote: >> Hi all, >> Currently the fs related subsystem is broken in trunk, because of the >> known linking problems. >> >> I am proposing the attached patch which: >>- modifies the configure.in script t

Re: linking fs code problems in trunk

2009-03-29 Thread Alex Rousskov
On 03/28/2009 06:11 AM, Tsantilas Christos wrote: > Hi all, > Currently the fs related subsystem is broken in trunk, because of the > known linking problems. > > I am proposing the attached patch which: >- modifies the configure.in script to define in autoconf.h file the > HAVE_FS_UFS, HAVE_

Re: [noc] ** PROBLEM alert - wiki.squid-cache.org/HTTP is CRITICAL **

2009-03-29 Thread Kinkie
On Mon, Mar 30, 2009 at 1:31 AM, Nagios wrote: > * Nagios  * > > Notification Type: PROBLEM > > Service: HTTP > Host: wiki.squid-cache.org > Address: wiki.squid-cache.org > State: CRITICAL > > Date/Time: Sun Mar 29 16:31:55 PDT 2009 > > Additional Info: > > Connection refused Sorry guys.

Re: [RFC] USE_ and HAVE_ definitions

2009-03-29 Thread Tsantilas Christos
Hi Amos, Some comments about "#if X" and "#ifdef X". The gcc compiler when X is not defined, always assume that it is 0 when appeared in an "#if". So it is safe to use the #if instead of #ifdef. But maybe there is problem with other compilers (If I am not wrong visual c++ is an example). Pers

Re: [RFC] USE_ and HAVE_ definitions

2009-03-29 Thread Kinkie
On Sun, Mar 29, 2009 at 8:04 AM, Amos Jeffries wrote: > > At present we have a little bit of a mess with the configure.in defined >  macros. > > 1) defined or undefined. >  For coding:     #ifdef  or   #ifndef >  Combined form:  #if defined(X) && defined(Y) ... > > 2) always defined. >  For coding