Makefile revision 1276
1117N/A###############################################################################
1117N/A#
1117N/A# xcb library Makefile
1117N/A#
1117N/A# Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved.
1117N/A#
1117N/A# Permission is hereby granted, free of charge, to any person obtaining a
1117N/A# copy of this software and associated documentation files (the "Software"),
1117N/A# to deal in the Software without restriction, including without limitation
1117N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
1117N/A# and/or sell copies of the Software, and to permit persons to whom the
1117N/A# Software is furnished to do so, subject to the following conditions:
1117N/A#
1117N/A# The above copyright notice and this permission notice (including the next
1117N/A# paragraph) shall be included in all copies or substantial portions of the
1117N/A# Software.
1117N/A#
1117N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1117N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1117N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1117N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1117N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1117N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1117N/A# DEALINGS IN THE SOFTWARE.
1117N/A#
1117N/A
1117N/A# Package name used in tarballs
1117N/AMODULE_NAME=libxcb
1117N/A
1117N/A# Version number (used in path names)
1117N/AMODULE_VERSION=1.8.1
1117N/A
1117N/A# Checksums for upstream tarball
1117N/ATARBALL_MD5 = 9da03df9e2f4c048202920d9f6a7e123
1117N/ATARBALL_SHA1 = 98199b6054750a06cddd4e77baa4354af547ce6f
1117N/A
1117N/A# ARC cases that covered this module
1117N/AMODULE_ARC_CASES = PSARC/2010/109
1117N/A
1117N/A# Package metadata
1117N/AUPSTREAM_PROJECT = xcb
1117N/AUPSTREAM_PROJECT_SET = yes
1117N/A
1117N/A# Patches to apply to source after unpacking, in order
1117N/ASOURCE_PATCHES = Makefile.am.0.patch,-p1
1117N/ASOURCE_PATCHES += Makefile.am.4.patch,-p1
1117N/A
1117N/A# Regenerate Makefile.in's from Makefile.am's after patching them
1117N/AAUTORECONF=yes
1117N/A
1117N/A# Library name (used for specfiles/mapfiles)
1117N/ALIBNAME=xcb
1117N/A
1117N/A# Man pages to apply Sun footer to & attributes to list
1117N/ASUNTOUCHED_MANPAGES=
1117N/AMODULE_STABILITY=Uncommitted
1117N/ALIB_MAN_SUFFIX=
1117N/A
1117N/AMODULE_LD_OPTIONS = -z ignore -lc
1117N/ALD_LIBRARY_PATH=$(PROTODIR)/usr/lib$(ARCHLIBSUBDIR)
1117N/A
1117N/A# Command line options to GNU autoconf configure script
1117N/AMODULE_CONFIG_OPTS = $(MODTYPE_CONFIG_OPTS) \
1117N/A --disable-libtool-lock \
1117N/A --enable-build-docs=no \
1117N/A --enable-composite \
1117N/A --enable-damage \
1117N/A --enable-dpms \
1117N/A --enable-dri2 \
1117N/A --enable-glx \
1117N/A --enable-randr \
1117N/A --enable-record \
1117N/A --enable-render \
1117N/A --enable-resource \
1117N/A --enable-screensaver \
1117N/A --enable-shape \
1117N/A --enable-shm \
1117N/A --enable-sync \
1117N/A --enable-xevie \
1117N/A --enable-xfixes \
1117N/A --enable-xfree86-dri \
1117N/A --enable-xinerama \
1117N/A --enable-xinput \
1117N/A --enable-xprint \
1117N/A --disable-selinux \
1117N/A --enable-xtest \
1117N/A --enable-xv \
1117N/A --enable-xvmc \
1117N/A --with-queue-size=32768 \
1117N/A --with-pic
1117N/A
1117N/A# Work around libtool's interference
1117N/ADELIBTOOLIZE=yes
1117N/A
1117N/A# pkg-config files that need to have -R added
1117N/AFIX_PC_FILES=*.pc.in
1117N/A
1117N/Ainclude ../Makefile.inc
1117N/A