Makefile.inc revision 235
214N/A# -*- Makefile -*- rules common to both Xorg & Xvnc builds
214N/A#
967N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
214N/A# Use subject to license terms.
214N/A#
919N/A# Permission is hereby granted, free of charge, to any person obtaining a
919N/A# copy of this software and associated documentation files (the
919N/A# "Software"), to deal in the Software without restriction, including
919N/A# without limitation the rights to use, copy, modify, merge, publish,
919N/A# distribute, and/or sell copies of the Software, and to permit persons
919N/A# to whom the Software is furnished to do so, provided that the above
919N/A# copyright notice(s) and this permission notice appear in all copies of
919N/A# the Software and that both the above copyright notice(s) and this
919N/A# permission notice appear in supporting documentation.
919N/A#
919N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
919N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
919N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
919N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
919N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
919N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
919N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
214N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
214N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
214N/A#
214N/A# Except as contained in this notice, the name of a copyright holder
493N/A# shall not be used in advertising or otherwise to promote the sale, use
803N/A# or other dealings in this Software without prior written authorization
970N/A# of the copyright holder.
493N/A#
649N/A# @(#)Makefile.inc 1.2 07/10/11
214N/A#
493N/A
493N/APWD:sh=pwd
214N/ATOP=$(PWD)/../..
493N/A
967N/A# Xorg server source tarball to use sources from
380N/AXORGSERVER_VERS=1.3.0.0
493N/A
493N/Ainclude $(TOP)/common/Makefile.inc
967N/A
# Prefix for installation
XSERVER_PREFIX=$(X11_DIR)
FONTDIR=$(X11_DIR)/lib/X11/fonts
MESA_SRC_DIR=$(TOP)/lib/mesa/$(BUILD_DIR)/Mesa-6.5.2
MODULES_DIR='$${libdir}/modules$(MODULE_subdir)'
DRI_MODULES_DIR='$${libdir}/modules/dri$(MODULE_subdir)'
# Command line options to GNU autoconf configure script for xorg-server
XSERVER_CONFIG_OPTS_COMMON = \
--prefix=$(XSERVER_PREFIX) --mandir='$${prefix}/share/man' \
--bindir='$${exec_prefix}/bin/$(ARCHBINSUBDIR)' \
--disable-xdm-auth-1 --enable-xcsecurity \
--enable-shared --disable-static \
--disable-xsdl --disable-xwin --disable-xgl \
--disable-install-setuid \
--with-vendor-name="Sun Microsystems, Inc." \
--with-vendor-web="http://sunsolve.sun.com/" \
--with-os-name="`uname -srmv`" \
--with-log-dir=/var/log --with-xkb-output=/var/run/xkb \
--with-module-dir=$(MODULES_DIR) \
--with-dri-driver-path=$(DRI_MODULES_DIR) \
--with-xkb-path='$${libdir}/X11/xkb' \
--with-rgb-path='$${libdir}/X11/rgb' \
--with-default-font-path="$(FONTDIR)/TrueType/,$(FONTDIR)/Type1/,$(FONTDIR)/Type1/sun/,$(FONTDIR)/F3bitmaps/,$(FONTDIR)/misc/,$(FONTDIR)/100dpi/,$(FONTDIR)/75dpi/"
XSERVER_CONFIG_OPTS_sparc=$(XSERVER_CONFIG_OPTS_COMMON)
XSERVER_CONFIG_OPTS_i386=$(XSERVER_CONFIG_OPTS_COMMON) \
--with-mesa-source=$(MESA_SRC_DIR)
XSERVER_CONFIG_OPTS=$(XSERVER_CONFIG_OPTS_$(MACH))
# Need to append header path with gcc headers for MMX/SSE intrinsics
GCC_HEADERS:sh=gcc -print-search-dirs | awk -F: '$1 == "install" {printf "-idirafter %s/install-tools/include", $2}'
# Default DPMS settings for Solaris
DPMS_DEFINES= -DDEFAULT_STANDBY_TIME=1440000 \
-DDEFAULT_SUSPEND_TIME=1620000 \
-DDEFAULT_OFF_TIME=1800000
XSERVER_CPPFLAGS= \
-I$(MESA_SRC_DIR)/include \
-I$(PROTODIR)$(X11_INCLUDES_DIR) \
-I$(PROTODIR)$(X11_INCLUDES_DIR)/X11/extensions \
$(DPMS_DEFINES) -DSUNSOFT -DTSOL
# Environment variable options to GNU autoconf configure script
# - XSERVERCFLAGS_CFLAGS - force CFLAGS to avoid -I /usr/X11/include breaking
# use of headers from proto area
CONFIG_ENV_common = \
PKG_CONFIG_PATH=$(PROTODIR)/usr/lib$(ARCHLIBSUBDIR)/pkgconfig:$(TOP)/common/pc-files/$(BUILD_DIR):/usr/lib$(ARCHLIBSUBDIR)/pkgconfig \
INSTALL="$(TOP)/common/install-sh -c" CPPROG="cp -p" \
XSERVERCFLAGS_CFLAGS="-DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -DXTHREADS -DXUSE_MTSAFE_API" \
PATH=$(PATH):/usr/sbin
LDPATH_ADD = -L$(X11_SERVERLIBS_DIR)$(ARCHLIBSUBDIR) \
-R$(X11_SERVERLIBS_DIR)$(ARCHLIBSUBDIR)
CONFIG_ENV_cc = CC=$(CC) CFLAGS="$(PROG_CFLAGS)" \
CXX=$(CXX) CXXFLAGS="$(PROG_CXXFLAGS)" \
LDFLAGS="$(PROG_LDFLAGS) $(LDPATH_ADD)" \
CPPFLAGS="$($(XSERVER)_CPPFLAGS)"
CONFIG_ENV_gcc = CC=$(GCC) CFLAGS="$(DEFAULT_GCC_CFLAGS) $(ARCH_GCC_FLAGS)" \
CXX=$(GCC:gcc=g++) CXXFLAGS="$(DEFAULT_GCC_CFLAGS) $(ARCH_GCC_FLAGS)" \
LDFLAGS="$(GCC_PROG_LDFLAGS) -L/usr/sfw/lib$(ARCHLIBSUBDIR) -R/usr/sfw/lib$(ARCHLIBSUBDIR) $(LDPATH_ADD)" \
CPPFLAGS="$(GCC_HEADERS) $($(XSERVER)_CPPFLAGS)"
CONFIG_ENV= $(CONFIG_ENV_$(COMPILER)) $(CONFIG_ENV_common)
BUILD_32_FLAGS=ARCH_GCC_FLAGS="$(ARCH32_GCC_FLAGS)" ARCHBINSUBDIR="$(SUBDIR32)"
BUILD_64_FLAGS_sparc=ARCH_GCC_FLAGS="$(ARCH64_GCC_FLAGS)"
BUILD_64_FLAGS_i386=ARCH_GCC_FLAGS="$(ARCH64_GCC_FLAGS)" ARCHBINSUBDIR="$(SUBDIR64)"
BUILD_64_FLAGS=$(BUILD_64_FLAGS_$(MACH))
# Environment variable options to use when building
BUILD_ENV= PATH=$(PATH):/usr/sbin \
LD_LIBRARY_PATH=$(PROTODIR)$(X11_SERVERLIBS_DIR)$(ARCHLIBSUBDIR):$(PROTODIR)$(X11_DIR)/lib$(ARCHLIBSUBDIR):$(PROTODIR)$(X11_DIR)/lib/xorgcfg$(ARCHLIBSUBDIR)