Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* |
michael@0 | 2 | * Copyright © 2008 Red Hat, Inc. |
michael@0 | 3 | * |
michael@0 | 4 | * Permission is hereby granted, free of charge, to any person |
michael@0 | 5 | * obtaining a copy of this software and associated documentation |
michael@0 | 6 | * files (the "Software"), to deal in the Software without |
michael@0 | 7 | * restriction, including without limitation the rights to use, copy, |
michael@0 | 8 | * modify, merge, publish, distribute, sublicense, and/or sell copies |
michael@0 | 9 | * of the Software, and to permit persons to whom the Software is |
michael@0 | 10 | * furnished to do so, subject to the following conditions: |
michael@0 | 11 | * |
michael@0 | 12 | * The above copyright notice and this permission notice shall be |
michael@0 | 13 | * included in all copies or substantial portions of the Software. |
michael@0 | 14 | * |
michael@0 | 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
michael@0 | 16 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
michael@0 | 17 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
michael@0 | 18 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
michael@0 | 19 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
michael@0 | 20 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
michael@0 | 21 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
michael@0 | 22 | * SOFTWARE. |
michael@0 | 23 | * |
michael@0 | 24 | * Author: Carl D. Worth <cworth@cworth.org> |
michael@0 | 25 | */ |
michael@0 | 26 | |
michael@0 | 27 | #ifndef PIXMAN_VERSION_H__ |
michael@0 | 28 | #define PIXMAN_VERSION_H__ |
michael@0 | 29 | |
michael@0 | 30 | #ifndef PIXMAN_H__ |
michael@0 | 31 | # error pixman-version.h should only be included by pixman.h |
michael@0 | 32 | #endif |
michael@0 | 33 | |
michael@0 | 34 | #define PIXMAN_VERSION_MAJOR 0 |
michael@0 | 35 | #define PIXMAN_VERSION_MINOR 27 |
michael@0 | 36 | #define PIXMAN_VERSION_MICRO 1 |
michael@0 | 37 | |
michael@0 | 38 | #define PIXMAN_VERSION_STRING "0.27.1" |
michael@0 | 39 | |
michael@0 | 40 | #define PIXMAN_VERSION_ENCODE(major, minor, micro) ( \ |
michael@0 | 41 | ((major) * 10000) \ |
michael@0 | 42 | + ((minor) * 100) \ |
michael@0 | 43 | + ((micro) * 1)) |
michael@0 | 44 | |
michael@0 | 45 | #define PIXMAN_VERSION PIXMAN_VERSION_ENCODE( \ |
michael@0 | 46 | PIXMAN_VERSION_MAJOR, \ |
michael@0 | 47 | PIXMAN_VERSION_MINOR, \ |
michael@0 | 48 | PIXMAN_VERSION_MICRO) |
michael@0 | 49 | |
michael@0 | 50 | #endif /* PIXMAN_VERSION_H__ */ |