Makefile revision 6395
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User#
11e9368a226272085c337e9e74b79808c16fbdbaTinderbox User# CDDL HEADER START
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User#
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# The contents of this file are subject to the terms of the
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# Common Development and Distribution License (the "License").
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# You may not use this file except in compliance with the License.
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User#
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# or http://www.opensolaris.org/os/licensing.
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# See the License for the specific language governing permissions
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# and limitations under the License.
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User#
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# When distributing Covered Code, include this CDDL HEADER in each
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# If applicable, add the following below this CDDL HEADER, with the
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# fields enclosed by brackets "[]" replaced with your own identifying
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# information: Portions Copyright [yyyy] [name of copyright owner]
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User#
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# CDDL HEADER END
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User#
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt#
cd32f419a8a5432fbb139f56ee73cbf68b9350ccTinderbox User# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User#
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox UserBUILD_BITS = 32_and_64
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox Userinclude ../../../make-rules/shared-macros.mk
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox UserCOMPONENT_NAME= libcroco
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox UserCOMPONENT_VERSION= 0.6.8
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox UserCOMPONENT_PROJECT_URL= https://wiki.gnome.org/Projects/Libcroco
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox UserCOMPONENT_ARCHIVE_HASH= \
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User sha256:ea6e1b858c55219cefd7109756bff5bc1a774ba7a55f7d3ccd734d6b871b8570
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox UserCOMPONENT_BUGDB= gnome/libraries
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox UserTPNO= 24633
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox Userinclude $(WS_MAKE_RULES)/gnome-component.mk
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User# Needed because of patch to configure.in.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntCOMPONENT_PREP_ACTION += (cd $(@D); autoreconf -fiv);
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Actually, -Bsymbolic-functions; the option is misnamed -- Solaris linker
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# doesn't support -Bsymbolic-functions currently.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntCONFIGURE_OPTIONS += --disable-Bsymbolic
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntCONFIGURE_OPTIONS += --disable-static
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# Needed to make tests work
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntCOMPONENT_TEST_ENV += PATH="$(GNUBIN):$(PATH)"
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntCOMPONENT_TEST_TARGETS = test
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntCOMPONENT_TEST_TRANSFORMS += '-e "/^removing tests/d"'
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox UserCOMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-all.master
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntREQUIRED_PACKAGES += developer/documentation-tool/gtk-doc
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntREQUIRED_PACKAGES += library/libxml2
14a656f94b1fd0ababd84a772228dfa52276ba15Evan HuntREQUIRED_PACKAGES += library/glib2
b6b8f8a0362da8c749021c4b6376cfb96047912bTinderbox User