Makefile revision 1008
128N/A###############################################################################
128N/A#
128N/A# Xext 1.x Makefile
128N/A#
128N/A# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
128N/A#
128N/A# Permission is hereby granted, free of charge, to any person obtaining a
128N/A# copy of this software and associated documentation files (the "Software"),
128N/A# to deal in the Software without restriction, including without limitation
128N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
128N/A# and/or sell copies of the Software, and to permit persons to whom the
128N/A# Software is furnished to do so, subject to the following conditions:
128N/A#
128N/A# The above copyright notice and this permission notice (including the next
128N/A# paragraph) shall be included in all copies or substantial portions of the
128N/A# Software.
128N/A#
128N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
128N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
128N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
844N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
128N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
128N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
128N/A# DEALINGS IN THE SOFTWARE.
1244N/A#
1226N/A#
618N/A
1244N/A# Package name used in tarballs
1244N/AMODULE_NAME=libXext
128N/A
844N/A# Version number (used in path names)
1226N/AMODULE_VERSION=1.1.2
618N/A
1289N/A# Checksums for upstream tarball
128N/ATARBALL_MD5 = 9e51f9cb7e0a38c7099ac1c0de1a1add
128N/ATARBALL_SHA1 = b48a4e55d21e5ce9dd3356281f32e00b17b4c9f7
128N/A
128N/A# Patches to apply to source after unpacking, in order
128N/ASOURCE_PATCHES = \
128N/A shm.patch \
128N/A sun-exts.patch
128N/A
128N/A# Library name (used for specfiles/mapfiles)
128N/ALIBNAME=Xext
128N/A
128N/A# ARC cases that covered this module
128N/A# PSARC 1999/188 FBPM (Frame Buffer Power Management) Extension
128N/AMODULE_ARC_CASES = PSARC/1999/188
128N/A# PSARC/2005/328 Xinerama Protocol Compatibility
128N/AMODULE_ARC_CASES += PSARC/2005/328
128N/A# PSARC/2007/500 X11 MIT-SHM Extension across zones
128N/AMODULE_ARC_CASES += PSARC/2007/500
128N/A# PSARC/2008/194 X11R7 update to libXext, libXevie & libXss
128N/AMODULE_ARC_CASES += PSARC/2008/194
128N/A# PSARC/2009/293 X Generic Event Extension (XGE), Version 1.0
128N/AMODULE_ARC_CASES += PSARC/2009/293
128N/A
128N/A# Man pages to apply Sun footer to & attributes to list
128N/ASUNTOUCHED_MANPAGES=man/*.man
128N/AMODULE_STABILITY=Committed
128N/ALIB_MAN_SUFFIX=3xext
128N/A
181N/A# pkg-config files that need to have -R added
128N/AFIX_PC_FILES=xext.pc.in
181N/A
128N/A# Enable Solaris-specific code
181N/AMODULE_CPPFLAGS = -DSUNSOFT
128N/A
181N/A# Link with version mapfile and libraries that contain sources that used
128N/A# to be in libXext
128N/AMODULE_LD_OPTIONS = -M $(PWD)/mapfile-vers
128N/A
128N/A# Regenerate Makefile.in's from Makefile.am's after patching them
128N/AAUTORECONF=yes
# Merge in additional sources from sun-src directory
ADDITIONAL_SOURCE_DIR=sun-src
# Compatibility links from /usr/X11/lib to /usr/lib
MODULE_X11_LIBCOMPAT_LINKS = libXext.so libXext.so.0
include ../Makefile.inc