------------------------------------------------------------ revno: 12661 revision-id: squid3@treenet.co.nz-20131129041900-dl9tqppeepvc0ox1 parent: squid3@treenet.co.nz-20131121215429-33xponpnhutozpta fixes bug(s): http://bugs.squid-cache.org/show_bug.cgi?id=3967 author: Thomas De Schampheleire committer: Amos Jeffries branch nick: 3.3 timestamp: Thu 2013-11-28 21:19:00 -0700 message: Bug 3967: ipc/Kid.cc compilation failure: 'time' was not declared in this scope Function time() comes from , so add the necessary #include. ------------------------------------------------------------ # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: squid3@treenet.co.nz-20131129041900-dl9tqppeepvc0ox1 # target_branch: http://bzr.squid-cache.org/bzr/squid3/3.3 # testament_sha1: 351324b70ad538df9b5a5e04868d311af134e6e2 # timestamp: 2013-11-29 04:30:05 +0000 # source_branch: http://bzr.squid-cache.org/bzr/squid3/3.3 # base_revision_id: squid3@treenet.co.nz-20131121215429-\ # 33xponpnhutozpta # # Begin patch === modified file 'src/ipc/Kid.cc' --- src/ipc/Kid.cc 2013-01-02 10:12:45 +0000 +++ src/ipc/Kid.cc 2013-11-29 04:19:00 +0000 @@ -7,6 +7,10 @@ #include "globals.h" #include "ipc/Kid.h" +#if HAVE_TIME_H +#include +#endif + #if HAVE_SYS_WAIT_H #include #endif