1 #
2 # Copyright (c) 2002, 2008, Oracle and/or its affiliates. All rights reserved.
3 #
4
5 #
6 # Makefile.PL for ::Task
7 #
8
9 require 5.8.4;
10 use strict;
11 use warnings;
12 use ExtUtils::MakeMaker;
13
14 # #defines.
15 my @defines = ( DEFINE => exists($ENV{RELEASE_BUILD}) ? '-DNDEBUG' : '' );
16
17 # List of POD pages to install.
18 my @man3pods = ( MAN3PODS => {} );
19
20 #
21 # If not building as part of ON.
22 #
23 if (! exists($ENV{CODEMGR_WS})) {
24
25 #
26 # Suppress the setting of LD_RUN_PATH. The ON build environment
27 # contains a modified MakeMaker that does this automatically, so we
28 # only need to do this if we are building outside of ON.
29 #
|
1 #
2 # Copyright (c) 2002, 2008, Oracle and/or its affiliates. All rights reserved.
3 #
4
5 #
6 # Makefile.PL for ::Task
7 #
8
9 require 5.0010;
10 use strict;
11 use warnings;
12 use ExtUtils::MakeMaker;
13
14 # #defines.
15 my @defines = ( DEFINE => exists($ENV{RELEASE_BUILD}) ? '-DNDEBUG' : '' );
16
17 # List of POD pages to install.
18 my @man3pods = ( MAN3PODS => {} );
19
20 #
21 # If not building as part of ON.
22 #
23 if (! exists($ENV{CODEMGR_WS})) {
24
25 #
26 # Suppress the setting of LD_RUN_PATH. The ON build environment
27 # contains a modified MakeMaker that does this automatically, so we
28 # only need to do this if we are building outside of ON.
29 #
|