gfx/cairo/libpixman/src/pixman-version.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gfx/cairo/libpixman/src/pixman-version.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,50 @@
     1.4 +/*
     1.5 + * Copyright © 2008 Red Hat, Inc.
     1.6 + *
     1.7 + * Permission is hereby granted, free of charge, to any person
     1.8 + * obtaining a copy of this software and associated documentation
     1.9 + * files (the "Software"), to deal in the Software without
    1.10 + * restriction, including without limitation the rights to use, copy,
    1.11 + * modify, merge, publish, distribute, sublicense, and/or sell copies
    1.12 + * of the Software, and to permit persons to whom the Software is
    1.13 + * furnished to do so, subject to the following conditions:
    1.14 + *
    1.15 + * The above copyright notice and this permission notice shall be
    1.16 + * included in all copies or substantial portions of the Software.
    1.17 + *
    1.18 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    1.19 + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    1.20 + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    1.21 + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
    1.22 + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
    1.23 + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
    1.24 + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    1.25 + * SOFTWARE.
    1.26 + *
    1.27 + * Author: Carl D. Worth <cworth@cworth.org>
    1.28 + */
    1.29 +
    1.30 +#ifndef PIXMAN_VERSION_H__
    1.31 +#define PIXMAN_VERSION_H__
    1.32 +
    1.33 +#ifndef PIXMAN_H__
    1.34 +#  error pixman-version.h should only be included by pixman.h
    1.35 +#endif
    1.36 +
    1.37 +#define PIXMAN_VERSION_MAJOR 0
    1.38 +#define PIXMAN_VERSION_MINOR 27
    1.39 +#define PIXMAN_VERSION_MICRO 1
    1.40 +
    1.41 +#define PIXMAN_VERSION_STRING "0.27.1"
    1.42 +
    1.43 +#define PIXMAN_VERSION_ENCODE(major, minor, micro) (	\
    1.44 +	  ((major) * 10000)				\
    1.45 +	+ ((minor) *   100)				\
    1.46 +	+ ((micro) *     1))
    1.47 +
    1.48 +#define PIXMAN_VERSION PIXMAN_VERSION_ENCODE(	\
    1.49 +	PIXMAN_VERSION_MAJOR,			\
    1.50 +	PIXMAN_VERSION_MINOR,			\
    1.51 +	PIXMAN_VERSION_MICRO)
    1.52 +
    1.53 +#endif /* PIXMAN_VERSION_H__ */

mercurial