Andreas Wacknitz
2019-02-20 87aea72cefaa0f85220264ab8462c9a19caba0ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
 
#
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2018, Michal Nowak
#
 
include ../../../make-rules/shared-macros.mk
 
COMPONENT_NAME=        pcre
COMPONENT_VERSION=    8.42
COMPONENT_REVISION=    1
COMPONENT_SRC=        $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_SRC).tar.gz
COMPONENT_ARCHIVE_HASH=    \
    sha256:69acbc2fbdefb955d42a4c606dfde800c2885711d2979e356c0636efde9ec3b5
COMPONENT_ARCHIVE_URL=    http://sourceforge.net/projects/pcre/files/pcre/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
COMPONENT_SUMMARY=    Perl-Compatible Regular Expressions
COMPONENT_PROJECT_URL=  http://pcre.org/
COMPONENT_BUGDB=    library/pcre
COMPONENT_FMRI=        library/pcre
COMPONENT_CLASSIFICATION=    Development/C
COMPONENT_LICENSE=    BSD
COMPONENT_LICENSE_FILE=    LICENCE
 
include $(WS_MAKE_RULES)/prep.mk
include $(WS_MAKE_RULES)/configure.mk
include $(WS_MAKE_RULES)/ips.mk
 
# pick up -std=c99 in CFLAGS
CFLAGS+=    -std=c99
 
# turn on largefile support
CFLAGS+=    $(CPP_LARGEFILES)
#CFLAGS+=    $(XPG6MODE)
 
CXXFLAGS+=    $(CC_PIC)
 
# turn on support for large files
CXXFLAGS+=    $(CPP_LARGEFILES)
 
#CXXFLAGS+=    $(XPG5MODE)
 
CONFIGURE_ENV+=    "CPP=$(CC) $(CPPFLAGS) $(CFLAGS) -E"
CONFIGURE_ENV+=    "CXXCPP=$(CXX) $(CPPFLAGS) $(CXXFLAGS) -E"
CONFIGURE_ENV+=    "CXXLDFLAGS=$(LDFLAGS)"
CONFIGURE_ENV+= "CXXLD=$(CXX) $(CXXFLAGS) $(LDFLAGS)"
CONFIGURE_ENV+= "INSTALL=$(INSTALL)"
CONFIGURE_ENV+= "MAKE=$(GMAKE)"
 
CONFIGURE_ENV.64+= "CXXLINKLIB=$(CXX) $(CCFLAGS) $(LDFLAGS)"
CONFIGURE_ENV.64+= "MACH64=$(MACH64)"
 
CONFIGURE_OPTIONS+=    --includedir=$(CONFIGURE_INCLUDEDIR)/pcre
CONFIGURE_OPTIONS+=    --localstatedir=/var
CONFIGURE_OPTIONS+=    --disable-static
CONFIGURE_OPTIONS+=    --enable-cpp
CONFIGURE_OPTIONS+=    --enable-jit
CONFIGURE_OPTIONS+=    --enable-rebuild-chartables
CONFIGURE_OPTIONS+=    --enable-utf8
CONFIGURE_OPTIONS+=    --enable-unicode-properties
CONFIGURE_OPTIONS+=    --enable-newline-is-any
CONFIGURE_OPTIONS+=    --disable-stack-for-recursion
CONFIGURE_OPTIONS+=    --enable-pcregrep-libz
CONFIGURE_OPTIONS+=    --enable-pcregrep-libbz2
CONFIGURE_OPTIONS+=    --with-posix-malloc-threshold=20
CONFIGURE_OPTIONS+=    --with-link-size=4
CONFIGURE_OPTIONS+=    --with-match-limit=10000000
CONFIGURE_OPTIONS+=    --with-pic
 
CONFIGURE_OPTIONS.64+=    --libexecdir=$(CONFIGURE_PREFIX)/libexec/$(MACH64)
 
# Without this 64-bit libraries get /usr/lib/$(MACH64) RPATH
CONFIGURE_ENV.64 += LT_SYS_LIBRARY_PATH="/lib/$(MACH64):/usr/lib/$(MACH64)"
 
COMPONENT_BUILD_ENV+=    "LDFLAGS=$(LDFLAGS)"
COMPONENT_BUILD_ENV+=    "INSTALL=$(INSTALL)"
COMPONENT_BUILD_ENV+=    "MAKE=$(GMAKE)"
 
COMPONENT_BUILD_ARGS+=    -e
 
# Master test results are the same for 32-bit and 64-bit, so override
# here, rather than create multiple identical master files.
COMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-all.master
 
COMPONENT_TEST_TRANSFORMS += \
    '-e "s|Testsuite summary for PCRE .*|Testsuite summary for PCRE|" '
 
ASLR_MODE = $(ASLR_ENABLE)
 
COMPONENT_INSTALL_ARGS+=    "INSTALL=$(INSTALL)"
COMPONENT_INSTALL_ARGS+=    "MAKE=$(GMAKE)"
 
# common targets
 
build:        $(BUILD_32_and_64)
 
install:    $(INSTALL_32_and_64)
 
test:        $(TEST_32_and_64)
 
REQUIRED_PACKAGES += compress/bzip2
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += SUNWcs
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += $(GXX_RUNTIME_PKG)
REQUIRED_PACKAGES += $(GCC_RUNTIME_PKG)