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