components/sqlite-3/Makefile
author Rich Burridge <rich.burridge@oracle.com>
Thu, 23 Feb 2017 13:46:52 -0800
changeset 7687 1093e2a9adbd
parent 7105 60994030253b
child 7770 5efbd9a35bd0
permissions -rw-r--r--
25590368 Userland components should include "upstream" release tracking information
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
     1
#
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
     3
#
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
     7
#
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    12
#
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    18
#
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    20
#
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    21
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    22
#
7687
1093e2a9adbd 25590368 Userland components should include "upstream" release tracking information
Rich Burridge <rich.burridge@oracle.com>
parents: 7105
diff changeset
    23
# Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    24
#
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    25
BUILD_BITS= 64_and_32
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    26
include ../../make-rules/shared-macros.mk
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    27
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    28
COMPONENT_NAME=		sqlite
6349
00824654920d 23085379 Upgrade sqlite-3 to 3.12.2
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5682
diff changeset
    29
TARBALL_VERSION=	3120200
00824654920d 23085379 Upgrade sqlite-3 to 3.12.2
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5682
diff changeset
    30
COMPONENT_VERSION=	3.12.2
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    31
COMPONENT_PROJECT_URL=	http://www.sqlite.org/
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    32
COMPONENT_SRC=		$(COMPONENT_NAME)-autoconf-$(TARBALL_VERSION)
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    33
COMPONENT_ARCHIVE_HASH= \
6349
00824654920d 23085379 Upgrade sqlite-3 to 3.12.2
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5682
diff changeset
    34
    sha256:fd00770c9afd39db555c78400e52f55e8bd6568c78be23561abb472a22d09abb
00824654920d 23085379 Upgrade sqlite-3 to 3.12.2
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5682
diff changeset
    35
COMPONENT_ARCHIVE_URL=	$(COMPONENT_PROJECT_URL)2016/$(COMPONENT_ARCHIVE)
5202
1cf3fdb2aee7 22365272 sqlite3 bug category is wrong and configure complains
Rich Burridge <rich.burridge@oracle.com>
parents: 5182
diff changeset
    36
COMPONENT_BUGDB=	database/sqlite3
7687
1093e2a9adbd 25590368 Userland components should include "upstream" release tracking information
Rich Burridge <rich.burridge@oracle.com>
parents: 7105
diff changeset
    37
COMPONENT_ANITYA_ID=	4877
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    38
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    39
# Documentation
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    40
DOC_VERSION=		$(TARBALL_VERSION)
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    41
COMPONENT_SRC_1=        $(COMPONENT_NAME)-doc-$(DOC_VERSION)
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    42
COMPONENT_ARCHIVE_1=    $(COMPONENT_SRC_1).zip
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    43
COMPONENT_ARCHIVE_HASH_1=       \
6349
00824654920d 23085379 Upgrade sqlite-3 to 3.12.2
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5682
diff changeset
    44
    sha256:67c640c4b01b961016717db61e3e43c63c33248c78ce0de9f10b88ea7ce97670
00824654920d 23085379 Upgrade sqlite-3 to 3.12.2
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5682
diff changeset
    45
COMPONENT_ARCHIVE_URL_1=         $(COMPONENT_PROJECT_URL)2016/$(COMPONENT_ARCHIVE_1)
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    46
PKG_PROTO_DIRS +=       $(COMPONENT_SRC_1)
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    47
6349
00824654920d 23085379 Upgrade sqlite-3 to 3.12.2
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5682
diff changeset
    48
TPNO=			27892
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    49
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    50
TEST_TARGET= $(NO_TESTS)
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    51
include $(WS_MAKE_RULES)/common.mk
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    52
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    53
COMPONENT_PRE_CONFIGURE_ACTION = \
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    54
	($(CLONEY) $(SOURCE_DIR) $(@D))
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    55
7105
60994030253b 24616528 sqlite-3 fails to build with studio 12.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 6725
diff changeset
    56
LDFLAGS+= $(CC_BITS)
60994030253b 24616528 sqlite-3 fails to build with studio 12.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents: 6725
diff changeset
    57
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    58
TEA_CONFIGURE_OPTIONS.32 += --with-tcl="$(USRLIBDIR)"
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    59
TEA_CONFIGURE_OPTIONS.64 += --with-tcl="$(USRLIBDIR64)"
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    60
TEA_CONFIGURE_OPTIONS.64 += --enable-64bit
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    61
TEA_CONFIGURE_OPTIONS.sparc.64 += --enable-64bit-vis
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    62
TEA_CONFIGURE_OPTIONS = --enable-shared
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    63
TEA_CONFIGURE_OPTIONS += $(TEA_CONFIGURE_OPTIONS.$(BITS))
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    64
TEA_CONFIGURE_OPTIONS += $(TEA_CONFIGURE_OPTIONS.$(MACH))
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    65
TEA_CONFIGURE_OPTIONS += $(TEA_CONFIGURE_OPTIONS.$(MACH).$(BITS))
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    66
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    67
COMPONENT_POST_CONFIGURE_ACTION = \
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    68
	(cd $(@D)/tea ; $(ENV) $(CONFIGURE_ENV) $(CONFIG_SHELL) \
5682
94c0ca64c022 15558602 TCL_LD_SEARCH_FLAGS is wrongly defined in tclConfig.sh
Shawn Walker-Salas <shawn.walker@oracle.com>
parents: 5499
diff changeset
    69
	./configure $(TEA_CONFIGURE_OPTIONS));
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    70
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    71
COMPONENT_POST_BUILD_ACTION = \
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    72
	(cd $(@D)/tea ; $(ENV) $(COMPONENT_BUILD_ENV) \
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    73
	$(GMAKE) $(COMPONENT_BUILD_ARGS) $(COMPONENT_BUILD_TARGETS));
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    74
6725
062b105c766e 24321394 sqlite-3 prevents thunderbird from generating global search database
Jingning Ji <jingning.ji@oracle.com>
parents: 6349
diff changeset
    75
# Enable DSQLITE_ENABLE_FTS3_TOKENIZER to allow thunderbird work. Should disable it if
062b105c766e 24321394 sqlite-3 prevents thunderbird from generating global search database
Jingning Ji <jingning.ji@oracle.com>
parents: 6349
diff changeset
    76
# thunderbird fixes that. Bugzilla id https://bugzilla.mozilla.org/show_bug.cgi?id=1252937
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    77
CFLAGS +=	-D_POSIX_PTHREAD_SEMANTICS
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    78
CFLAGS +=	-DNDEBUG
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    79
CFLAGS +=	-DSQLITE_SECURE_DELETE
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    80
CFLAGS +=	-DSQLITE_ENABLE_FTS3
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    81
CFLAGS +=	-DUSE_PREAD
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    82
CFLAGS +=	-DHAVE_USLEEP
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    83
CFLAGS +=	-DHAVE_FDATASYNC
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    84
CFLAGS +=	-DHAVE_STATVFS
6349
00824654920d 23085379 Upgrade sqlite-3 to 3.12.2
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5682
diff changeset
    85
CFLAGS += 	-DSQLITE_ENABLE_DBSTAT_VTAB
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    86
CFLAGS +=	-DSQLITE_ENABLE_UNLOCK_NOTIFY
6725
062b105c766e 24321394 sqlite-3 prevents thunderbird from generating global search database
Jingning Ji <jingning.ji@oracle.com>
parents: 6349
diff changeset
    87
CFLAGS +=	-DSQLITE_ENABLE_FTS3_TOKENIZER
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    88
CFLAGS +=	-DSQLITE_ENABLE_STAT2
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    89
CFLAGS +=	-DSQLITE_MAX_SCHEMA_RETRY=25
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    90
CFLAGS +=	-DSQLITE_DEFAULT_PAGE_SIZE=32768
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    91
CFLAGS +=	-DSQLITE_MAX_DEFAULT_PAGE_SIZE=32768
5499
43b47c5b7a67 22813873 svc.configd increased memory usage, machines run out of space
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5421
diff changeset
    92
CFLAGS +=	-DSQLITE_DEFAULT_PCACHE_INITSZ=0
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    93
CFLAGS +=	-I.
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    94
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    95
CONFIGURE_OPTIONS +=	--enable-threadsafe
5202
1cf3fdb2aee7 22365272 sqlite3 bug category is wrong and configure complains
Rich Burridge <rich.burridge@oracle.com>
parents: 5182
diff changeset
    96
CONFIGURE_OPTIONS +=	--enable-dynamic-extensions
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    97
CONFIGURE_OPTIONS +=	--enable-shared
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    98
CONFIGURE_OPTIONS +=	--disable-static
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
    99
6349
00824654920d 23085379 Upgrade sqlite-3 to 3.12.2
Stacy Yeh <stacy.yeh@oracle.com>
parents: 5682
diff changeset
   100
REQUIRED_PACKAGES += library/libedit
5182
78cc8a5782fa 15820206 SUNBT7202646 Move libffi from Desktop consolidation to Userland
Bill Rushmore <bill.rushmore@oracle.com>
parents:
diff changeset
   101
REQUIRED_PACKAGES += library/readline