Makefile revision 206
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync#
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# CDDL HEADER START
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync#
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# The contents of this file are subject to the terms of the
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# Common Development and Distribution License (the "License").
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# You may not use this file except in compliance with the License.
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync#
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# or http://www.opensolaris.org/os/licensing.
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# See the License for the specific language governing permissions
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# and limitations under the License.
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync#
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# When distributing Covered Code, include this CDDL HEADER in each
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# If applicable, add the following below this CDDL HEADER, with the
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# fields enclosed by brackets "[]" replaced with your own identifying
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# information: Portions Copyright [yyyy] [name of copyright owner]
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync#
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# CDDL HEADER END
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync#
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync#
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncinclude ../../make-rules/shared-macros.mk
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCOMPONENT_NAME = curl
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCOMPONENT_VERSION= 7.21.2
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCOMPONENT_PROJECT_URL= http://curl.haxx.se/
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCOMPONENT_ARCHIVE_HASH= sha1:af8182165d7a0d16b97e2c2936ed92f3ba5c868c
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCOMPONENT_ARCHIVE_URL= http://curl.haxx.se/download/$(COMPONENT_ARCHIVE)
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncinclude ../../make-rules/prep.mk
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncinclude ../../make-rules/configure.mk
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncinclude ../../make-rules/ips.mk
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncinclude ../../make-rules/lint-libraries.mk
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncPATCH_LEVEL = 0
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncGSSAPI_LIBDIR_32 = /usr/lib
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncGSSAPI_LIBDIR_64 = /usr/lib/$(MACH64)
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCFLAGS += $(CPP_LARGEFILES)
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_ENV += CFLAGS="$(CFLAGS)"
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_ENV += PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)"
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --localstatedir=/var --enable-shared --disable-static
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-http --enable-ftp
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-file --enable-dict
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-manual --disable-libgcc
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-rtsp --enable-proxy
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-telnet --enable-tftp --enable-pop3
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-imap --enable-smtp
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-ipv6 --enable-nonblocking
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-thread --enable-verbose
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --disable-sspi --enable-crypto-auth
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-cookies --disable-hidden-symbols
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --disable-soname-bump
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --enable-ldap --with-random=/dev/urandom
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --with-ssl --with-ldap-lib=ldap
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --with-lber-lib=sldap
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --with-gssapi-includes=/usr/include/gssapi
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --with-gssapi-libs=$(GSSAPI_LIBDIR_$(BITS))
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --with-gssapi=/usr --without-ca-bundle
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --with-ca-path=/etc/openssl/certs
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --with-zlib=/usr --with-libidn=/usr
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += --with-pic
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncCONFIGURE_OPTIONS += "curl_disallow_getifaddrs=yes"
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncLINT_FLAGS += -I$(SOURCE_DIR)/include
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncbuild: $(BUILD_32_and_64)
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncinstall: $(INSTALL_32_and_64)
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsynctest: $(TEST_32_and_64)
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsyncinclude ../../make-rules/depend.mk
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync
0b74a2f80aba476dc8be8bc1c63891fc53945986vboxsync