Makefile revision 1351
883N/A###############################################################################
883N/A#
883N/A# Pixman: The pixel-manipulation library for X and Cairo.
883N/A#
883N/A# Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
883N/A#
883N/A# Permission is hereby granted, free of charge, to any person obtaining a
883N/A# copy of this software and associated documentation files (the "Software"),
883N/A# to deal in the Software without restriction, including without limitation
883N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
883N/A# and/or sell copies of the Software, and to permit persons to whom the
883N/A# Software is furnished to do so, subject to the following conditions:
883N/A#
883N/A# The above copyright notice and this permission notice (including the next
883N/A# paragraph) shall be included in all copies or substantial portions of the
883N/A# Software.
883N/A#
883N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
883N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
883N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
3996N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
883N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
883N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
883N/A# DEALINGS IN THE SOFTWARE.
883N/A#
883N/A
883N/A# Package name used in tarballs
883N/AMODULE_NAME=pixman
883N/A
883N/A# Version number (used in path names)
1273N/AMODULE_VERSION=0.29.2
883N/A
883N/A# Checksums for upstream tarball
883N/ATARBALL_MD5 = 6e64a6d73559973ef6a9f125b5161ad3
883N/ATARBALL_SHA1 = c1367c28cfb6a1c79c39b5df2d1a05351f57c702
883N/A
883N/A# Patches to apply to source after unpacking, in order
883N/ASOURCE_PATCHES =
883N/A
1653N/A# Override default CFLAGS for x86 builds to work around assembler syntax
883N/A# errors reported by Studio 12.1 when the -xspace flag is used
883N/Ainclude ../../common/Makefile.init
883N/ANO_XSPACE_CFLAGS = $(LIB_CFLAGS:-xspace=)
883N/AMODULE_CONFIG_ENV_i386 = CFLAGS="$(NO_XSPACE_CFLAGS)"
883N/AMODULE_CONFIG_ENV_sparc = # not needed
883N/AMODULE_CONFIG_ENV = $(MODULE_CONFIG_ENV_$(MACH))
883N/A
883N/A# Library name
883N/ALIBNAME=pixman
1574N/A
1574N/A# Where to install pixman files
1574N/AMODULE_PREFIX=/usr
883N/AMODULE_PREFIX_SET=yes
883N/A
883N/A# Package metadata
883N/AMODULE_DESC = the pixman pixel-manipulation library
883N/A
883N/A# pkg(5) name we deliver the files in (override default)
883N/AMODULE_PKGNAME=library/graphics/pixman
883N/AMODULE_PKGNAME_SET=yes
883N/A# Package classification (override default)
883N/AMODULE_PKGCLASS=System/Libraries
887N/AMODULE_PKGCLASS_SET=yes
887N/A
887N/A# ARC cases that covered this module
913N/A# LSARC/2008/637 pixman
913N/AMODULE_ARC_CASES = LSARC/2008/637
913N/A# LSARC/2009/223 pixman 0.14
913N/AMODULE_ARC_CASES += LSARC/2009/223
883N/A# PSARC/2010/282 pixman 0.18
3996N/AMODULE_ARC_CASES += PSARC/2010/282
3996N/A
3996N/A# Man pages to apply Sun footer to & attributes to list
3996N/A#SUNTOUCHED_MANPAGES=man/*.man
4100N/AMODULE_STABILITY=Volatile
3996N/ALIB_MAN_SUFFIX=3pixman
3996N/A
3996N/A# pkg-config files that need to have -R added
3996N/AFIX_PC_FILES=pixman-1.pc.in
# Command line options to GNU autoconf configure script
# --disable-gtk: Disable building of test programs that require gtk
# and have problems with mismatches between system library & the one we're
# building in our builds.
MODULE_CONFIG_OPTS = --disable-gtk
include ../Makefile.inc