~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to contrib/nextstep/Squid.pkg.README

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2006-11-11 10:32:06 UTC
  • Revision ID: james.westby@ubuntu.com-20061111103206-f3p0r9g0vq44rp3r
Tags: upstream-3.0.PRE5
ImportĀ upstreamĀ versionĀ 3.0.PRE5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This installer package contains the Squid internet cache for OPENSTEP. It has
 
2
been compiled for m68k and i486.
 
3
 
 
4
The following has not been checked for Squid 2:
 
5
 
 
6
Currently, the Run* scripts in /usr/local/squid/bin do not work because they
 
7
assume a non-standard date program. If you want them to work, compile and
 
8
install the following program as /usr/local/squid/bin/epoch:
 
9
 
 
10
#include <stdio.h>
 
11
 
 
12
main()
 
13
{
 
14
    long t = time();
 
15
    printf( "%ul\n", t);
 
16
}
 
17
 
 
18
And change the "date '+%d%H%M%S'" invocations in the Run* scripts to
 
19
/usr/local/squid/bin/epoch
 
20
 
 
21
Gerben Wierda