tor 2009-08-13 klockan 14:42 +0400 skrev Aleksey Samostrelov: > Hello. > > Trying to install squid 3 stable 18 on AIX 5.3 > > Configuration is successfull, but make produces an error: > > "util.c", line 76.21: 1506-162 (W) No definition was found for > function default_failure_notify. Storage class changed to extern. No idea why your compiler barfs on that one. Maybe a chain effect of the next one? > "util.c", line 109.4: 1506-191 (E) The character # is not a valid C > source character. > "util.c", line 109.1: 1506-046 (S) Syntax error. Right. C++ ism has crept into a C file there. Just delete the offending line to get rid of the error. Or alternatively figure out if your compiler can support // comments (was added to standard C in C99, originally only used in C++) Regards Henrik