Makefile revision 2498
142N/A#
142N/A# CDDL HEADER START
142N/A#
142N/A# The contents of this file are subject to the terms of the
142N/A# Common Development and Distribution License (the "License").
142N/A# You may not use this file except in compliance with the License.
142N/A#
142N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
142N/A# or http://www.opensolaris.org/os/licensing.
142N/A# See the License for the specific language governing permissions
142N/A# and limitations under the License.
142N/A#
142N/A# When distributing Covered Code, include this CDDL HEADER in each
142N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
142N/A# If applicable, add the following below this CDDL HEADER, with the
142N/A# fields enclosed by brackets "[]" replaced with your own identifying
142N/A# information: Portions Copyright [yyyy] [name of copyright owner]
142N/A#
142N/A# CDDL HEADER END
142N/A#
142N/A
142N/A#
142N/A# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
142N/A#
142N/A
142N/Ainclude ../../make-rules/shared-macros.mk
142N/A
142N/ACOMPONENT_NAME= memcached
288N/ACOMPONENT_VERSION= 1.4.17
142N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
142N/ACOMPONENT_PROJECT_URL= http://memcached.org/
288N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
288N/ACOMPONENT_ARCHIVE_HASH= \
142N/A sha256:d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458
142N/ACOMPONENT_ARCHIVE_URL= http://memcached.org/files/$(COMPONENT_ARCHIVE)
142N/ACOMPONENT_BUGDB= database/memcached
142N/A
142N/Ainclude ../../make-rules/prep.mk
288N/Ainclude ../../make-rules/configure.mk
288N/Ainclude ../../make-rules/ips.mk
142N/A
288N/APATH=/usr/bin:/usr/gnu/bin:/usr/perl5/bin
288N/A
142N/ACOMPONENT_PRE_CONFIGURE_ACTION = \
142N/A ($(CLONEY) $(SOURCE_DIR) $(@D))
142N/A
288N/ACOMPONENT_TEST_TARGETS= test
142N/A
142N/Astudio_OPT = -xO5
288N/A
288N/ACFLAGS += -D__ATTRIBUTE_DISABLED
142N/A
142N/ACONFIGURE_BINDIR.64 = $(CONFIGURE_PREFIX)/lib/$(MACH64)
142N/ACONFIGURE_OPTIONS.64 += --with-libevent=/usr/lib/$(MACH64)
288N/A# The below works around a bug in configure/configure.ac that sets
288N/A# an incorrect runpath.
142N/A# Setting ac_cv_libevent bypasses libevent checks in configure,
142N/A# including setting the runpath (-R), which is currently ok
142N/A# because libevent is in a default library directory.
142N/ACONFIGURE_OPTIONS.64 += "ac_cv_libevent_dir=/usr/lib/$(MACH64)"
142N/ACONFIGURE_OPTIONS += --enable-dtrace --disable-docs --disable-coverage
142N/ACONFIGURE_OPTIONS += --localstatedir=/var
288N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
288N/A
142N/AASLR_MODE = $(ASLR_ENABLE)
142N/A
142N/A# common targets
142N/Abuild: $(BUILD_64)
install: $(INSTALL_64)
test: $(TEST_64)
BUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
include ../../make-rules/depend.mk