michael@0: /* michael@0: * Copyright © 2008 Red Hat, Inc. michael@0: * michael@0: * Permission is hereby granted, free of charge, to any person michael@0: * obtaining a copy of this software and associated documentation michael@0: * files (the "Software"), to deal in the Software without michael@0: * restriction, including without limitation the rights to use, copy, michael@0: * modify, merge, publish, distribute, sublicense, and/or sell copies michael@0: * of the Software, and to permit persons to whom the Software is michael@0: * furnished to do so, subject to the following conditions: michael@0: * michael@0: * The above copyright notice and this permission notice shall be michael@0: * included in all copies or substantial portions of the Software. michael@0: * michael@0: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, michael@0: * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF michael@0: * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND michael@0: * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS michael@0: * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN michael@0: * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN michael@0: * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE michael@0: * SOFTWARE. michael@0: * michael@0: * Author: Carl D. Worth michael@0: */ michael@0: michael@0: #ifndef PIXMAN_VERSION_H__ michael@0: #define PIXMAN_VERSION_H__ michael@0: michael@0: #ifndef PIXMAN_H__ michael@0: # error pixman-version.h should only be included by pixman.h michael@0: #endif michael@0: michael@0: #define PIXMAN_VERSION_MAJOR 0 michael@0: #define PIXMAN_VERSION_MINOR 27 michael@0: #define PIXMAN_VERSION_MICRO 1 michael@0: michael@0: #define PIXMAN_VERSION_STRING "0.27.1" michael@0: michael@0: #define PIXMAN_VERSION_ENCODE(major, minor, micro) ( \ michael@0: ((major) * 10000) \ michael@0: + ((minor) * 100) \ michael@0: + ((micro) * 1)) michael@0: michael@0: #define PIXMAN_VERSION PIXMAN_VERSION_ENCODE( \ michael@0: PIXMAN_VERSION_MAJOR, \ michael@0: PIXMAN_VERSION_MINOR, \ michael@0: PIXMAN_VERSION_MICRO) michael@0: michael@0: #endif /* PIXMAN_VERSION_H__ */