~ubuntu-branches/ubuntu/precise/libxt/precise-security

« back to all changes in this revision

Viewing changes to src/PassivGrab.c

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois, Julien Cristau, Robert Hooker, Christopher James Halse Rogers, Cyril Brulebois
  • Date: 2011-01-14 04:45:31 UTC
  • mfrom: (4.1.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20110114044531-1fdwgh8s7vixn43p
Tags: 1:1.0.9-1
[ Julien Cristau ]
* Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
  good reason.  Thanks, Colin Watson!
* New upstream release.
* Update debian/copyright from upstream COPYING.

[ Robert Hooker ]
* Don't install makestrs and its man page in libxt-dev, it's not shipped
  anymore.

[ Christopher James Halse Rogers ]
* New new upstream release.
* Drop debian/patches/02_dont_export_private_deps.diff:
  - Upstream has trimmed the Required list in xt.pc, and a libXt header
    includes a #define which uses a libX11 symbol, so libX11 should be
    in the Requires field (and is).  This fixes lots of FTBFS with
    binutils-gold, which doesn't consider indirect dependencies.

[ Cyril Brulebois ]
* Update debian/copyright from upstream COPYING.
* Exclude libXt.la in dh_install call.
* Switch dh_install from --list-missing to --fail-missing for added
  safety.
* Add myself to Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Xorg: PassivGrab.c,v 1.5 2001/02/09 02:03:56 xorgcvs Exp $ */
2
 
 
 
1
/*
 
2
 
 
3
Copyright (c) 1993, Oracle and/or its affiliates. All rights reserved.
 
4
 
 
5
Permission is hereby granted, free of charge, to any person obtaining a
 
6
copy of this software and associated documentation files (the "Software"),
 
7
to deal in the Software without restriction, including without limitation
 
8
the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
9
and/or sell copies of the Software, and to permit persons to whom the
 
10
Software is furnished to do so, subject to the following conditions:
 
11
 
 
12
The above copyright notice and this permission notice (including the next
 
13
paragraph) shall be included in all copies or substantial portions of the
 
14
Software.
 
15
 
 
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 
19
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
20
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
21
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
22
DEALINGS IN THE SOFTWARE.
 
23
 
 
24
*/
3
25
/********************************************************
4
26
 
5
27
Copyright 1988 by Hewlett-Packard Company
6
28
Copyright 1987, 1988, 1989,1990 by Digital Equipment Corporation, Maynard, Massachusetts
7
 
Copyright 1993 by Sun Microsystems, Inc. Mountain View, CA.
8
29
 
9
30
Permission to use, copy, modify, and distribute this software
10
31
and its documentation for any purpose and without fee is hereby
11
32
granted, provided that the above copyright notice appear in all
12
33
copies and that both that copyright notice and this permission
13
34
notice appear in supporting documentation, and that the names of
14
 
Hewlett-Packard, Digital, or Sun not be used in advertising or
 
35
Hewlett-Packard or Digital not be used in advertising or
15
36
publicity pertaining to distribution of the software without specific,
16
37
written prior permission.
17
38
 
23
44
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
24
45
SOFTWARE.
25
46
 
26
 
SUN DISCLAIMS ALL WARRANTIES WITH REGARD TO  THIS  SOFTWARE,
27
 
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FIT-
28
 
NESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SUN BE  LI-
29
 
ABLE  FOR  ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
30
 
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,  DATA  OR
31
 
PROFITS,  WHETHER  IN  AN  ACTION OF CONTRACT, NEGLIGENCE OR
32
 
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
33
 
THE USE OR PERFORMANCE OF THIS SOFTWARE.
34
 
 
35
47
********************************************************/
36
 
/* $XFree86$ */
37
48
 
38
49
/*
39
50