Makefile revision 4941
015055b6e23f5c08f6a5b34726f90b62597e9e45Tinderbox User#
6fe48fb46e53ffc37542853a1edb74cb481b7d94Automatic Updater# CDDL HEADER START
c78c39caab4cf8b5daefc9c65878f7f5ed3eb7a0Tinderbox User#
f536382c59dd492a14667b753816d920f9981f1cTinderbox User# The contents of this file are subject to the terms of the
ab496cc3df1648e9ad992a87c35c2c0870fdc69dTinderbox User# Common Development and Distribution License (the "License").
7c1468ed500356839a4a222517364e6ce18cb1a2Tinderbox User# You may not use this file except in compliance with the License.
c57668a2fbbe558c1bd21652813616f2f517c469Tinderbox User#
a7c412f37cc73d0332887a746e81220cbf09dd00Mark Andrews# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
287a6a8f9040dc43560cd69cddf83bfc0f53b76fTinderbox User# or http://www.opensolaris.org/os/licensing.
dedefc0bdbb4e6e39eeb98aa2fc6883efec2ddb0Mark Andrews# See the License for the specific language governing permissions
8de3f14f1c300c3e1ed99084cc03485b42c92bf1Tinderbox User# and limitations under the License.
950d203b64f512b85fcc093ee1e9e3e531a1aea3Tinderbox User#
b886b04d8d2b085cbf3e1bf4442dee87f43ba5e4Tinderbox User# When distributing Covered Code, include this CDDL HEADER in each
dedefc0bdbb4e6e39eeb98aa2fc6883efec2ddb0Mark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
e676a596869d8a80a644c99a848afb53d1c5975eMark Andrews# If applicable, add the following below this CDDL HEADER, with the
e676a596869d8a80a644c99a848afb53d1c5975eMark Andrews# fields enclosed by brackets "[]" replaced with your own identifying
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# information: Portions Copyright [yyyy] [name of copyright owner]
a7c412f37cc73d0332887a746e81220cbf09dd00Mark Andrews#
a7c412f37cc73d0332887a746e81220cbf09dd00Mark Andrews# CDDL HEADER END
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews#
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
e676a596869d8a80a644c99a848afb53d1c5975eMark Andrews#
e676a596869d8a80a644c99a848afb53d1c5975eMark Andrewsinclude ../../make-rules/shared-macros.mk
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
9ecb5d33470ebfb3719a1b8d56bcefdf4b27f7b2Tinderbox UserCOMPONENT_NAME= apr-util
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsCOMPONENT_VERSION= 1.5.4
9ecb5d33470ebfb3719a1b8d56bcefdf4b27f7b2Tinderbox UserCOMPONENT_PROJECT_URL= http://apr.apache.org/
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
9ecb5d33470ebfb3719a1b8d56bcefdf4b27f7b2Tinderbox UserCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsCOMPONENT_ARCHIVE_HASH= \
9ecb5d33470ebfb3719a1b8d56bcefdf4b27f7b2Tinderbox User sha256:976a12a59bc286d634a21d7be0841cc74289ea9077aa1af46be19d1a6e844c19
efb0e886f18894a1d2489f1ad74ad14b579e11c7Mark AndrewsCOMPONENT_ARCHIVE_URL= http://archive.apache.org/dist/apr/$(COMPONENT_ARCHIVE)
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsCOMPONENT_BUGDB= utility/apache
9ecb5d33470ebfb3719a1b8d56bcefdf4b27f7b2Tinderbox User
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsTPNO= 20776
9ecb5d33470ebfb3719a1b8d56bcefdf4b27f7b2Tinderbox User
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsCONFIGURE_DEFAULT_DIRS=no
9ecb5d33470ebfb3719a1b8d56bcefdf4b27f7b2Tinderbox User
0eb371ca0dab50ae3462e98794a6126198c52f4bMark Andrewsinclude $(WS_MAKE_RULES)/prep.mk
9ecb5d33470ebfb3719a1b8d56bcefdf4b27f7b2Tinderbox Userinclude $(WS_MAKE_RULES)/configure.mk
0eb371ca0dab50ae3462e98794a6126198c52f4bMark Andrewsinclude $(WS_MAKE_RULES)/ips.mk
015055b6e23f5c08f6a5b34726f90b62597e9e45Tinderbox User
dedefc0bdbb4e6e39eeb98aa2fc6883efec2ddb0Mark Andrews# Micro version for easy libraries packaging
aa9c561961e9d877946ebaa8795fa2be054ab7bfEvan HuntMICRO_VERSION:= $(shell echo $(COMPONENT_VERSION) | awk -F. '{ print $$3 }')
dc238a06bffa79de141ee7655765e2df91498a8aTinderbox UserPKG_MACROS+= MICRO_VERSION=$(MICRO_VERSION)
0e573cdd111e060e5f6c18249b5ccacbe8abe278Tinderbox User
aa9c561961e9d877946ebaa8795fa2be054ab7bfEvan HuntPATCH_LEVEL=0
9513a2a6670951f5cf5477fcfec9f933fcaff628Automatic Updater
16f6050f29b6b0422cee858e609f65e474e70ef2Tinderbox UserCONFIGURE_PREFIX=/usr/apr-util/1.5
9513a2a6670951f5cf5477fcfec9f933fcaff628Automatic Updater
aa9c561961e9d877946ebaa8795fa2be054ab7bfEvan HuntCONFIGURE_OPTIONS += --with-mysql=/usr/mysql/5.5
dc238a06bffa79de141ee7655765e2df91498a8aTinderbox UserCONFIGURE_OPTIONS += --with-expat=/usr
0e573cdd111e060e5f6c18249b5ccacbe8abe278Tinderbox UserCONFIGURE_OPTIONS += --with-sqlite3=/usr
aa9c561961e9d877946ebaa8795fa2be054ab7bfEvan HuntCONFIGURE_OPTIONS += --with-ldap=ldap_r-2.4
710bce1a85c96e85ca1a90471382055acd29d51fTinderbox UserCONFIGURE_OPTIONS += --with-ldap-include=/usr/include/openldap
9513a2a6670951f5cf5477fcfec9f933fcaff628Automatic UpdaterCONFIGURE_OPTIONS += --without-odbc
9513a2a6670951f5cf5477fcfec9f933fcaff628Automatic UpdaterCONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
9513a2a6670951f5cf5477fcfec9f933fcaff628Automatic UpdaterCONFIGURE_OPTIONS.32 += --enable-layout=Solaris
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsCONFIGURE_OPTIONS.64 += --enable-layout=Solaris-$(MACH64)
cdfc81e048bd34c1d628380247bda6b80a89e20eAutomatic UpdaterCONFIGURE_OPTIONS.32 += --with-apr=/usr/apr/1.5/bin/apr-1-config
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsCONFIGURE_OPTIONS.64 += --with-apr=/usr/apr/1.5/bin/$(MACH64)/apr-1-config
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsCONFIGURE_OPTIONS.32 += MYSQL_CONFIG=/usr/mysql/5.5/bin/$(MACH32)/mysql_config
0eb371ca0dab50ae3462e98794a6126198c52f4bMark Andrews
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsPATH=$(SPRO_VROOT)/bin:/usr/bin:/usr/gnu/bin
9513a2a6670951f5cf5477fcfec9f933fcaff628Automatic Updaterifeq ($(strip $(PARFAIT_BUILD)),yes)
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsPATH=$(PARFAIT_TOOLS):$(SPRO_VROOT)/bin:/usr/bin:/usr/gnu/bin
0eb371ca0dab50ae3462e98794a6126198c52f4bMark Andrewsendif
16f6050f29b6b0422cee858e609f65e474e70ef2Tinderbox User
0eb371ca0dab50ae3462e98794a6126198c52f4bMark AndrewsCOMPONENT_TEST_TARGETS= test
9513a2a6670951f5cf5477fcfec9f933fcaff628Automatic Updater
0eb371ca0dab50ae3462e98794a6126198c52f4bMark Andrews$(INSTALL_64): COMPONENT_POST_INSTALL_ACTION += \
eabc9c3c07cd956d3c436bd7614cb162dabdda76Mark Andrews cd $(SOURCE_DIR); \
0eb371ca0dab50ae3462e98794a6126198c52f4bMark Andrews sed 's;OUTPUT_DIRECTORY=.*;OUTPUT_DIRECTORY=$(PROTO_DIR)$(CONFIGURE_PREFIX);' \
0eb371ca0dab50ae3462e98794a6126198c52f4bMark Andrews docs/doxygen.conf | doxygen - ;
0eb371ca0dab50ae3462e98794a6126198c52f4bMark Andrews
0eb371ca0dab50ae3462e98794a6126198c52f4bMark Andrews# Some patches need configure script recreation.
015055b6e23f5c08f6a5b34726f90b62597e9e45Tinderbox UserCOMPONENT_PREP_ACTION += (cd $(@D); autoconf);
2ae159b376dac23870d8005563c585acf85a4b5aEvan Hunt
2ae159b376dac23870d8005563c585acf85a4b5aEvan HuntASLR_MODE = $(ASLR_NOT_APPLICABLE)
e40c4e4c17d4df338e2a7db0f84d8dbb3858964cTinderbox User
95637507c3d47481fbf0a8a8c750a57f944f677fMark Andrewsconfigure: $(CONFIGURE_32_and_64)
2ae159b376dac23870d8005563c585acf85a4b5aEvan Hunt
2ae159b376dac23870d8005563c585acf85a4b5aEvan Huntbuild: $(BUILD_32_and_64)
2ae159b376dac23870d8005563c585acf85a4b5aEvan Hunt
2ae159b376dac23870d8005563c585acf85a4b5aEvan Huntinstall: $(INSTALL_32_and_64)
2ae159b376dac23870d8005563c585acf85a4b5aEvan Hunt
2ae159b376dac23870d8005563c585acf85a4b5aEvan Hunttest: $(TEST_32_and_64)
2ae159b376dac23870d8005563c585acf85a4b5aEvan Hunt
7cc0a5d21ef046bfd630c4769943d896a7d7472cTinderbox Usersystem-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED)
dedefc0bdbb4e6e39eeb98aa2fc6883efec2ddb0Mark Andrews
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews
ee11dfc481f2ef6a032a715454f6290961a722d2Tinderbox UserREQUIRED_PACKAGES += database/mysql-55
ee11dfc481f2ef6a032a715454f6290961a722d2Tinderbox UserREQUIRED_PACKAGES += database/mysql-55/library
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsREQUIRED_PACKAGES += database/sqlite-3
e40c4e4c17d4df338e2a7db0f84d8dbb3858964cTinderbox UserREQUIRED_PACKAGES += developer/documentation-tool/doxygen
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsREQUIRED_PACKAGES += library/apr-15
e40c4e4c17d4df338e2a7db0f84d8dbb3858964cTinderbox UserREQUIRED_PACKAGES += library/expat
0e573cdd111e060e5f6c18249b5ccacbe8abe278Tinderbox UserREQUIRED_PACKAGES += library/openldap
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsREQUIRED_PACKAGES += shell/ksh93
e40c4e4c17d4df338e2a7db0f84d8dbb3858964cTinderbox UserREQUIRED_PACKAGES += system/library
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark AndrewsREQUIRED_PACKAGES += system/library/math
e40c4e4c17d4df338e2a7db0f84d8dbb3858964cTinderbox User