Makefile revision 396
10139N/A###############################################################################
10139N/A#
10139N/A# X11 1.x Makefile
10139N/A#
10139N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
10139N/A# Use subject to license terms.
10139N/A#
10139N/A# Permission is hereby granted, free of charge, to any person obtaining a
10139N/A# copy of this software and associated documentation files (the
10139N/A# "Software"), to deal in the Software without restriction, including
10139N/A# without limitation the rights to use, copy, modify, merge, publish,
10139N/A# distribute, and/or sell copies of the Software, and to permit persons
10139N/A# to whom the Software is furnished to do so, provided that the above
10139N/A# copyright notice(s) and this permission notice appear in all copies of
10139N/A# the Software and that both the above copyright notice(s) and this
10139N/A# permission notice appear in supporting documentation.
10139N/A#
10139N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
10139N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
10139N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
10139N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
10139N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
10139N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
10139N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
10139N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
10139N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
10139N/A#
10139N/A# Except as contained in this notice, the name of a copyright holder
10139N/A# shall not be used in advertising or otherwise to promote the sale, use
10139N/A# or other dealings in this Software without prior written authorization
10139N/A# of the copyright holder.
10139N/A#
10139N/A# %W% %E%
10139N/A#
10139N/A
10139N/A# Package name used in tarballs
10139N/ALIB_MODULE=libX11
10139N/A
10139N/A# Version number (used in path names)
10139N/ALIB_VERS=1.1.3
10139N/A
10139N/A# Patches to apply to source after unpacking, in order
10139N/ASOURCE_PATCHES = \
10139N/A lintlib.patch,-p1 \
10139N/A manpages.patch,-p1 \
10139N/A XErrorDB.patch,-p1 \
10139N/A 1234757.patch \
10139N/A 4010755.patch \
10139N/A 4614834.patch \
10139N/A 5039226.patch \
10139N/A 6409332.patch \
10139N/A solaris-abi.patch \
10139N/A solaris-i18n.patch \
10139N/A solaris-kbd.patch \
10139N/A SolarisIA.patch \
10139N/A sme.patch \
10139N/A 4076297.patch \
10139N/A 1261271.patch \
10139N/A 6686591.patch \
13931N/A 6690054.patch
10139N/A
10139N/A# Library name (used for specfiles/mapfiles)
10139N/ALIBNAME=X11
10139N/A
10139N/A# Man pages to apply Sun footer to & attributes to list
10139N/ASUNTOUCHED_MANPAGES=man/*.man man/xkb/*.man
10139N/ASUN_PACKAGE=SUNWxwplt
10139N/ALIB_STABILITY=Committed
13570N/ALIB_MAN_SUFFIX=3X11
10139N/A
10139N/A# Command line options to GNU autoconf configure script
10139N/ALIB_ADD_CONFIG_OPTS = --enable-xthreads --enable-loadable-i18n \
11965N/A --with-xcb=no --enable-loadable-xcursor --enable-xcms \
11965N/A --enable-xlocaledir --enable-xkb --enable-man-pages=$(LIB_MAN_SUFFIX) \
13678N/A --with-lint --enable-lint-library \
10139N/A --with-locale-lib-dir='$${exec_prefix}/lib/X11/locale$(LIBSUBDIR)'
10139N/A
13680N/A# -xF is needed for mapfile reordering to work
10139N/ALIB_ADD_CFLAGS = -xF -g
10139N/A
11933N/A# -DSUNSOFT enables SUN_SME (Shared Memory transport extension)
10139N/A# -DMOTIFBC enables compatibility with bugs in Motif & other apps
10139N/A# -DSUNSOFT_KBD enables Solaris traditional keyboard handling
10139N/ALIB_ADD_CPPFLAGS = -DSUNSOFT -DMOTIFBC -DSUNSOFT_KBD
10139N/A
13760N/A# Work around libtool's interference
10139N/ALIB_ADD_BUILD_DEPS = delibtoolize
10139N/A
10139N/A# Use -KPIC instead of -Kpic because we have too many symbols on SPARC
10139N/ADELIBTOOLIZE_FLAGS_sparc = -P
10139N/ADELIBTOOLIZE_FLAGS_i386 =
10139N/ADELIBTOOLIZE_FLAGS = $(DELIBTOOLIZE_FLAGS_$(MACH))
10139N/A
10139N/A# Need additional mapfile for additional symbols in 64-bit versions
10139N/ABUILD_64_FLAGS = ADD_libX11_LDFLAGS="-M $(PWD)/mapfile-vers-64"
10139N/A
10139N/A# Library built in tree
10139N/ALIB_BUILT=$(SOURCE_DIR)/src/.libs/libX11.so.4
10139N/A
10139N/A# pkg-config files that need to have -R added
10139N/AFIX_PC_FILES=x11.pc.in
10139N/A
10139N/A# Regenerate Makefile.in's from Makefile.am's after patching them
10139N/AAUTORECONF=true
12787N/A
10139N/Ainclude ../Makefile.inc
10139N/A
10139N/A# Merge in additional sources from sun-src directory
11232N/Asource_gen:: $(LNDIR)
10139N/A mkdir -p $(SOURCE_DIR)
10139N/A (cd $(SOURCE_DIR) && $(LNDIR) ../../sun-src)
10139N/A
10139N/Ainstall_gen::
10139N/A mkdir -p $(PROTODIR)/usr/X11/lib$(ARCHLIBSUBDIR)
10139N/A -rm -f $(PROTODIR)/usr/X11/lib$(ARCHLIBSUBDIR)/libX11.so
10139N/A ln -s libX11.so.4 $(PROTODIR)/usr/X11/lib$(ARCHLIBSUBDIR)/libX11.so
11925N/A
10139N/A# Install additional headers we need in other parts of the build or ship in
13732N/A# packages, but which X.Org doesn't
10139N/Ainstall_32::
10139N/A mkdir -p $(PROTODIR)/usr/X11/include/X11/extensions
10139N/A cp -pf sun-src/include/X11/Xvarargs.h $(PROTODIR)/usr/X11/include/X11/
10139N/A cp -pf sun-src/include/X11/extensions/XInteractive.h \
10139N/A $(PROTODIR)/usr/X11/include/X11/extensions/
10139N/A cp -pf sun-src/include/X11/extensions/XInteractive.h \
10139N/A $(PROTODIR)/usr/X11/include/X11/extensions/
10139N/A cp -pf $(BUILD_DIR_32)$(SOURCE_DIR)/src/ks_tables.h \
10139N/A $(PROTODIR)/usr/X11/include/
10139N/A cp -pf $(BUILD_DIR_32)$(SOURCE_DIR)/src/xlibi18n/Xlc*.h \
10139N/A $(PROTODIR)/usr/X11/include/X11/
10139N/A