5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
7 #
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
22 # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
23 # Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
24 # Copyright 2016, OmniTI Computer Consulting, Inc. All rights reserved.
25 #
26
27 # Configuration variables for the runtime environment of the nightly
28 # build script and other tools for construction and packaging of
29 # releases.
30 # This example is suitable for building an illumos workspace, which
31 # will contain the resulting archives. It is based off the onnv
32 # release. It sets NIGHTLY_OPTIONS to make nightly do:
33 # DEBUG build only (-D, -F)
34 # do not bringover (aka. pull or clone) from the parent (-n)
35 # runs 'make check' (-C)
36 # checks for new interfaces in libraries (-A)
37 # runs lint in usr/src (-l plus the LINTDIRS variable)
38 # sends mail on completion (-m and the MAILTO variable)
39 # creates packages for PIT/RE (-p)
40 # checks for changes in ELF runpaths (-r)
41 # build and use this workspace's tools in $SRC/tools (-t)
42 #
43 # - This file is sourced by "bldenv.sh" and "nightly.sh" and should not
44 # be executed directly.
229 # linting is actually lint clean or you'll get lots of mail.
230 # You shouldn't need to change this though.
231 #export LINTDIRS="$SRC y"
232
233 # Set this flag to 'n' to disable the use of 'checkpaths'. The default,
234 # if the 'N' option is not specified, is to run this test.
235 #CHECK_PATHS='y'
236
237 # POST_NIGHTLY can be any command to be run at the end of nightly. See
238 # nightly(1) for interactions between environment variables and this command.
239 #POST_NIGHTLY=
240
241 # Comment this out to disable support for IPP printing, i.e. if you
242 # don't want to bother providing the Apache headers this needs.
243 #export ENABLE_IPP_PRINTING=
244
245 # Comment this out to disable support for SMB printing, i.e. if you
246 # don't want to bother providing the CUPS headers this needs.
247 #export ENABLE_SMB_PRINTING=
248
249 # If your distro uses certain versions of Perl, make sure either
250 # Makefile.master contains your new defaults OR your .env file sets them.
251 # Stock illumos-gate does not have these set already.
252 export PERL_VERSION=5.16.1
253 export PERL_ARCH=i86pc-solaris-thread-multi-64int
254 export PERL_PKGVERS=
255
256 # To build IPS packages for the version you wish to update, ONNV_BUILDNUM must
257 # match the version you're on. Find this in /etc/release, and lose the 'r'.
258
259 # Current bloody is r151021, so use '151021'.
260 export ONNV_BUILDNUM=151021
|
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
7 #
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
12 #
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 #
19 # CDDL HEADER END
20 #
21 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
22 # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
23 # Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
24 # Copyright 2016, OmniTI Computer Consulting, Inc. All rights reserved.
25 # Copyright 2016 RackTop Systems.
26 #
27
28 # Configuration variables for the runtime environment of the nightly
29 # build script and other tools for construction and packaging of
30 # releases.
31 # This example is suitable for building an illumos workspace, which
32 # will contain the resulting archives. It is based off the onnv
33 # release. It sets NIGHTLY_OPTIONS to make nightly do:
34 # DEBUG build only (-D, -F)
35 # do not bringover (aka. pull or clone) from the parent (-n)
36 # runs 'make check' (-C)
37 # checks for new interfaces in libraries (-A)
38 # runs lint in usr/src (-l plus the LINTDIRS variable)
39 # sends mail on completion (-m and the MAILTO variable)
40 # creates packages for PIT/RE (-p)
41 # checks for changes in ELF runpaths (-r)
42 # build and use this workspace's tools in $SRC/tools (-t)
43 #
44 # - This file is sourced by "bldenv.sh" and "nightly.sh" and should not
45 # be executed directly.
230 # linting is actually lint clean or you'll get lots of mail.
231 # You shouldn't need to change this though.
232 #export LINTDIRS="$SRC y"
233
234 # Set this flag to 'n' to disable the use of 'checkpaths'. The default,
235 # if the 'N' option is not specified, is to run this test.
236 #CHECK_PATHS='y'
237
238 # POST_NIGHTLY can be any command to be run at the end of nightly. See
239 # nightly(1) for interactions between environment variables and this command.
240 #POST_NIGHTLY=
241
242 # Comment this out to disable support for IPP printing, i.e. if you
243 # don't want to bother providing the Apache headers this needs.
244 #export ENABLE_IPP_PRINTING=
245
246 # Comment this out to disable support for SMB printing, i.e. if you
247 # don't want to bother providing the CUPS headers this needs.
248 #export ENABLE_SMB_PRINTING=
249
250 # Comment this out to disable building of 64bit perl modules.
251 # Don't disable this unless instructed to do so by your distributor.
252 export ENABLE_64BIT_PERL=
253
254 # If your distro uses certain versions of Perl, make sure either
255 # Makefile.master contains your new defaults OR your .env file sets them.
256 # Stock illumos-gate does not have these set already.
257 export PERL_VERSION=5.16.1
258 export PERL_VARIANT=-thread-multi
259 export PERL_PKGVERS=
260
261 # To build IPS packages for the version you wish to update, ONNV_BUILDNUM must
262 # match the version you're on. Find this in /etc/release, and lose the 'r'.
263
264 # Current bloody is r151021, so use '151021'.
265 export ONNV_BUILDNUM=151021
|