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