~ubuntu-branches/ubuntu/hardy/exim4/hardy-proposed

« back to all changes in this revision

Viewing changes to src/pcre/maketables.c

  • Committer: Bazaar Package Importer
  • Author(s): Marc Haber
  • Date: 2005-07-02 06:08:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050702060834-qk17pd52kb9nt3bj
Tags: 4.52-1
* new upstream version 4.51. (mh)
  * adapt 70_remove_exim-users_references
  * remove 37_gnutlsparams
  * adapt 36_pcre
  * adapt 31_eximmanpage
* fix package priorities to have them in sync with override again. (mh)
* Fix error in nb (Norwegian) translation.
  Thanks to Helge Hafting. (mh). Closes: #315775
* Standards-Version: 3.6.2, no changes needed. (mh)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Cambridge: exim/exim-src/src/pcre/maketables.c,v 1.2 2005/06/15 08:57:10 ph10 Exp $ */
 
2
 
1
3
/*************************************************
2
4
*      Perl-Compatible Regular Expressions       *
3
5
*************************************************/
11
13
           Copyright (c) 1997-2003 University of Cambridge
12
14
 
13
15
-----------------------------------------------------------------------------
14
 
Permission is granted to anyone to use this software for any purpose on any
15
 
computer system, and to redistribute it freely, subject to the following
16
 
restrictions:
17
 
 
18
 
1. This software is distributed in the hope that it will be useful,
19
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
20
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21
 
 
22
 
2. The origin of this software must not be misrepresented, either by
23
 
   explicit claim or by omission.
24
 
 
25
 
3. Altered versions must be plainly marked as such, and must not be
26
 
   misrepresented as being the original software.
27
 
 
28
 
4. If PCRE is embedded in any software that is released under the GNU
29
 
   General Purpose Licence (GPL), then the terms of that licence shall
30
 
   supersede any condition above with which it is incompatible.
 
16
Redistribution and use in source and binary forms, with or without
 
17
modification, are permitted provided that the following conditions are met:
 
18
 
 
19
    * Redistributions of source code must retain the above copyright notice,
 
20
      this list of conditions and the following disclaimer.
 
21
 
 
22
    * Redistributions in binary form must reproduce the above copyright
 
23
      notice, this list of conditions and the following disclaimer in the
 
24
      documentation and/or other materials provided with the distribution.
 
25
 
 
26
    * Neither the name of the University of Cambridge nor the names of its
 
27
      contributors may be used to endorse or promote products derived from
 
28
      this software without specific prior written permission.
 
29
 
 
30
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
31
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
32
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
33
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
34
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
35
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
36
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
37
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
38
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
39
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
40
POSSIBILITY OF SUCH DAMAGE.
31
41
-----------------------------------------------------------------------------
32
 
 
33
 
See the file Tech.Notes for some information on the internals.
34
42
*/
35
43
 
36
44