Makefile revision 1754
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync#
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# CDDL HEADER START
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync#
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# The contents of this file are subject to the terms of the
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# Common Development and Distribution License (the "License").
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# You may not use this file except in compliance with the License.
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync#
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# or http://www.opensolaris.org/os/licensing.
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# See the License for the specific language governing permissions
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# and limitations under the License.
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync#
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# When distributing Covered Code, include this CDDL HEADER in each
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# If applicable, add the following below this CDDL HEADER, with the
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# fields enclosed by brackets "[]" replaced with your own identifying
168c8d6c9ebf206dd762e5909178774e4e6c68e2vboxsync# information: Portions Copyright [yyyy] [name of copyright owner]
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync#
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync# CDDL HEADER END
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync#
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
0d49a2fbc9857ad8dd29542de7fb37202f1a283fvboxsync#
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncinclude ../../../make-rules/shared-macros.mk
0d49a2fbc9857ad8dd29542de7fb37202f1a283fvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncCOMPONENT_NAME= XML-NamespaceSupport
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncCOMPONENT_VERSION= 1.11
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncCOMPONENT_ARCHIVE_HASH= \
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync sha256:6d8151f0a3f102313d76b64bfd1c2d9ed46bfe63a16f038e7d860fda287b74ea
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncCOMPONENT_ARCHIVE_URL= http://search.cpan.org/CPAN/authors/id/P/PE/PERIGRIN/$(COMPONENT_ARCHIVE)
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncCOMPONENT_PROJECT_URL= http://search.cpan.org/~perigrin/XML-NamespaceSupport-1.11/lib/XML/NamespaceSupport.pm
0d49a2fbc9857ad8dd29542de7fb37202f1a283fvboxsyncCOMPONENT_BUGDB= perl-mod/xml-namespacesupport
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync# build threaded 5.12 support too
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncPERL_VERSIONS += 5.12-mt
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncinclude $(WS_TOP)/make-rules/prep.mk
0d49a2fbc9857ad8dd29542de7fb37202f1a283fvboxsyncinclude $(WS_TOP)/make-rules/ips.mk
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncinclude $(WS_TOP)/make-rules/makemaker.mk
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync# Enable ASLR for this component
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncASLR_MODE = $(ASLR_ENABLE)
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync# man pages go in the common area
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncCOMPONENT_INSTALL_ENV += INSTALLVENDORMAN3DIR=$(USRSHAREMAN3DIR)
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncCOMPONENT_TEST_TARGETS = test
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncbuild: $(BUILD_32_and_64)
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncinstall: $(INSTALL_32_and_64)
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsynctest: $(TEST_32_and_64)
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsyncBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync
0d49a2fbc9857ad8dd29542de7fb37202f1a283fvboxsyncinclude $(WS_TOP)/make-rules/depend.mk
66a09bb37f8bc24ce62920cd480f9b4d13347aadvboxsync