Makefile revision 844
535N/A#
535N/A# CDDL HEADER START
911N/A#
535N/A# The contents of this file are subject to the terms of the
535N/A# Common Development and Distribution License (the "License").
535N/A# You may not use this file except in compliance with the License.
535N/A#
535N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
535N/A# or http://www.opensolaris.org/os/licensing.
535N/A# See the License for the specific language governing permissions
535N/A# and limitations under the License.
535N/A#
535N/A# When distributing Covered Code, include this CDDL HEADER in each
535N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
535N/A# If applicable, add the following below this CDDL HEADER, with the
535N/A# fields enclosed by brackets "[]" replaced with your own identifying
535N/A# information: Portions Copyright [yyyy] [name of copyright owner]
535N/A#
535N/A# CDDL HEADER END
535N/A#
535N/A
535N/A#
535N/A# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
535N/A#
535N/A
535N/Ainclude ../../make-rules/shared-macros.mk
535N/A
535N/APATH=/usr/bin:/usr/gnu/bin:/usr/sbin:/usr/perl5/bin
535N/A
535N/ACOMPONENT_NAME= squid
535N/ACOMPONENT_VERSION= 3.1.18
535N/ACOMPONENT_PROJECT_URL= http://www.squid-cache.org/
535N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
535N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
535N/ACOMPONENT_ARCHIVE_HASH= \
535N/A sha256:6a7122514d58c3077f2b43c928864be10753d8e2c8439133dacc9eba6c45e00d
606N/ACOMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)Versions/v3/3.1/$(COMPONENT_ARCHIVE)
535N/A
911N/Ainclude ../../make-rules/prep.mk
911N/Ainclude ../../make-rules/configure.mk
911N/Ainclude ../../make-rules/ips.mk
911N/A
535N/ACOMPILER = gcc
535N/A
535N/ACFLAGS += -I/usr/include/kerberosv5
535N/ACFLAGS += $(CPP_LARGEFILES)
535N/A
535N/A# Squid has own prefix
535N/ACONFIGURE_PREFIX = /usr/squid
535N/A
CONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
CONFIGURE_OPTIONS += --libexecdir=$(CONFIGURE_PREFIX)/libexec
CONFIGURE_OPTIONS += --localstatedir=/var/squid
CONFIGURE_OPTIONS += --sharedstatedir=/var/squid
CONFIGURE_OPTIONS += --sysconfdir=$(ETCDIR)/squid
CONFIGURE_OPTIONS += --mandir=$(CONFIGURE_PREFIX)/man
CONFIGURE_OPTIONS += --enable-arp-acl
CONFIGURE_OPTIONS += --enable-auth='basic,digest,negotiate,ntlm'
CONFIGURE_OPTIONS += --enable-basic-auth-helpers='DB,NCSA,YP,LDAP,PAM,getpwnam,MSNT,POP3,multi-domain-NTLM,SMB,SASL'
CONFIGURE_OPTIONS += --enable-cache-digests
CONFIGURE_OPTIONS += --enable-carp
CONFIGURE_OPTIONS += --enable-coss-aio-ops
CONFIGURE_OPTIONS += --enable-delay-pools
CONFIGURE_OPTIONS += --enable-digest-auth-helpers='ldap,password'
CONFIGURE_OPTIONS += --enable-external-acl-helpers='ip_user,unix_group,ldap_group,wbinfo_group'
CONFIGURE_OPTIONS += --enable-follow-x-forwarded-for
CONFIGURE_OPTIONS += --enable-forward-log
CONFIGURE_OPTIONS += --enable-forw-via-db
CONFIGURE_OPTIONS += --enable-htcp
CONFIGURE_OPTIONS += --enable-icmp
CONFIGURE_OPTIONS += --enable-large-cache-files
CONFIGURE_OPTIONS += --enable-multicast-miss
CONFIGURE_OPTIONS += --enable-negotiate-auth-helpers='squid_kerb_auth'
CONFIGURE_OPTIONS += --enable-ntlm-auth-helpers='smb_lm,fakeauth,no_check'
CONFIGURE_OPTIONS += --enable-ntlm-fail-open
CONFIGURE_OPTIONS += --enable-referer-log
CONFIGURE_OPTIONS += --enable-removal-policies='heap,lru'
CONFIGURE_OPTIONS += --enable-snmp
CONFIGURE_OPTIONS += --enable-ssl
CONFIGURE_OPTIONS += --enable-storeio='aufs,diskd,ufs'
CONFIGURE_OPTIONS += --enable-useragent-log
CONFIGURE_OPTIONS += --enable-x-accelerator-vary
CONFIGURE_OPTIONS += --with-aio
CONFIGURE_OPTIONS += --with-aufs-threads=8
CONFIGURE_OPTIONS += --with-large-files
CONFIGURE_OPTIONS += --with-build-environment=POSIX_V6_ILP32_OFFBIG
CONFIGURE_OPTIONS += --with-pthreads
COMPONENT_POST_BUILD_ACTION= \
(cd $(COMPONENT_DIR) ; \
$(CP) squid.conf.default $(@D)/src)
# common targets
build: $(BUILD_32)
install: $(INSTALL_32)
test: $(NO_TESTS)
BUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
include ../../make-rules/depend.mk