1998-11-20 08:52:48 +03:00
|
|
|
#!perl
|
|
|
|
|
|
|
|
#
|
1999-11-06 06:40:37 +03:00
|
|
|
# The contents of this file are subject to the Netscape Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/NPL/
|
1998-11-20 08:52:48 +03:00
|
|
|
#
|
1999-11-06 06:40:37 +03:00
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
1998-11-20 08:52:48 +03:00
|
|
|
#
|
1999-11-06 06:40:37 +03:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1998-11-20 08:52:48 +03:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1998-11-20 08:52:48 +03:00
|
|
|
#
|
|
|
|
|
2000-10-20 09:21:40 +04:00
|
|
|
use Cwd;
|
|
|
|
|
|
|
|
# Make sure we add the config dir to search
|
|
|
|
BEGIN
|
|
|
|
{
|
|
|
|
my ($inc_path) = cwd();
|
|
|
|
$inc_path =~ s/:build:mac$/:config:/;
|
|
|
|
push(@INC, $inc_path);
|
|
|
|
}
|
|
|
|
|
1998-11-20 08:52:48 +03:00
|
|
|
#
|
1999-05-26 05:38:36 +04:00
|
|
|
# build script (optimized)
|
1998-11-20 08:52:48 +03:00
|
|
|
#
|
|
|
|
use Mac::Processes;
|
|
|
|
use NGLayoutBuildList;
|
|
|
|
use Moz;
|
|
|
|
|
1999-05-26 05:38:36 +04:00
|
|
|
#-----------------------------------------------
|
|
|
|
# configuration variables that globally affect what is built
|
|
|
|
#-----------------------------------------------
|
|
|
|
$DEBUG = 0;
|
|
|
|
$CARBON = 0; # turn on to build with TARGET_CARBON
|
|
|
|
$PROFILE = 0;
|
1999-10-04 00:03:39 +04:00
|
|
|
$GC_LEAK_DETECTOR = 0; # turn on to use GC leak detection
|
2000-09-20 23:35:24 +04:00
|
|
|
$INCLUDE_CLASSIC_SKIN = 1;
|
2000-10-20 09:21:40 +04:00
|
|
|
$MOZILLA_OFFICIAL = 1;
|
1999-05-15 04:41:23 +04:00
|
|
|
|
1999-06-11 00:02:53 +04:00
|
|
|
$pull{all} = 0;
|
2000-02-10 06:16:27 +03:00
|
|
|
$pull{moz} = 0;
|
|
|
|
$pull{runtime} = 0;
|
1999-05-15 04:41:23 +04:00
|
|
|
|
2000-06-28 09:01:04 +04:00
|
|
|
$build{all} = 1; # turn off to do individual builds, or to do "most"
|
|
|
|
$build{most} = 0; # turn off to do individual builds
|
|
|
|
$build{dist} = 0;
|
|
|
|
$build{dist_runtime} = 0; # implied by $build{dist}
|
|
|
|
$build{xpidl} = 0;
|
2000-05-10 23:54:07 +04:00
|
|
|
$build{idl} = 0;
|
2000-06-28 09:01:04 +04:00
|
|
|
$build{stubs} = 0;
|
|
|
|
$build{runtime} = 0;
|
|
|
|
$build{common} = 0;
|
|
|
|
$build{imglib} = 0;
|
|
|
|
$build{necko} = 0;
|
|
|
|
$build{security} = 0;
|
|
|
|
$build{browserutils} = 0;
|
|
|
|
$build{intl} = 0;
|
|
|
|
$build{nglayout} = 0;
|
|
|
|
$build{editor} = 0;
|
|
|
|
$build{viewer} = 0;
|
|
|
|
$build{xpapp} = 0;
|
2000-09-20 23:35:24 +04:00
|
|
|
$build{extensions} = 1;
|
2000-06-28 09:01:04 +04:00
|
|
|
$build{plugins} = 0;
|
|
|
|
$build{mailnews} = 0;
|
|
|
|
$build{apprunner} = 0;
|
2000-09-20 23:35:24 +04:00
|
|
|
$build{resources} = 1;
|
1999-05-26 05:38:36 +04:00
|
|
|
|
2000-09-15 12:01:41 +04:00
|
|
|
$build{xptlink} = 0;
|
2000-08-03 02:10:54 +04:00
|
|
|
|
2000-06-24 04:03:50 +04:00
|
|
|
$options{transformiix} = 0;
|
|
|
|
$options{mathml} = 0;
|
|
|
|
$options{svg} = 0;
|
2000-07-08 01:52:23 +04:00
|
|
|
$options{mng} = 1;
|
2000-06-29 03:11:40 +04:00
|
|
|
$options{ldap} = 0;
|
|
|
|
$options{xmlextras} = 0;
|
2000-06-24 04:03:50 +04:00
|
|
|
|
2000-09-21 05:36:34 +04:00
|
|
|
# -------------------------- Chrome and jar-related options -----------------------------------------
|
|
|
|
|
|
|
|
$options{jar_manifests} = 1; # use jar.mn files for resources, not MANIFESTs. This must be ON,
|
|
|
|
# unless you want to use the obsolete (and probably bitrotted)
|
|
|
|
# MANIFEST files to install resources.
|
|
|
|
|
|
|
|
|
|
|
|
# These two options determine whether you get jar files, or loose files in chrome.
|
|
|
|
# Either one or both option must be turned on.
|
|
|
|
|
|
|
|
$options{chrome_jars} = 1; # build jar files
|
|
|
|
$options{chrome_files} = 0; # install regular files in chrome
|
|
|
|
|
|
|
|
$options{use_jars} = 1; # This option determines whether chrome comes out of jars
|
|
|
|
# or regular files at runtime (by affecting installed-chrome.txt).
|
|
|
|
# If 1, $options{chrome_jars} must be 1.
|
|
|
|
|
|
|
|
# ------------------------ End chrome and jar-related options ----------------------------------------
|
2000-09-15 12:01:41 +04:00
|
|
|
|
2000-06-24 04:03:50 +04:00
|
|
|
# Don't change these (where should they go?)
|
|
|
|
$optiondefines{mathml}{MOZ_MATHML} = 1;
|
|
|
|
$optiondefines{svg}{MOZ_SVG} = 1;
|
|
|
|
|
1999-05-26 05:38:36 +04:00
|
|
|
#-----------------------------------------------
|
|
|
|
# configuration variables that affect the manner
|
|
|
|
# of building, but possibly affecting
|
|
|
|
# the outcome.
|
|
|
|
#-----------------------------------------------
|
|
|
|
$ALIAS_SYM_FILES = $DEBUG;
|
|
|
|
$CLOBBER_LIBS = 1; # turn on to clobber existing libs and .xSYM files before
|
|
|
|
# building each project
|
|
|
|
# The following two options will delete all dist files (if you have $build{dist} turned on),
|
|
|
|
# but leave the directory structure intact.
|
|
|
|
$CLOBBER_DIST_ALL = 1; # turn on to clobber all aliases/files inside dist (headers/xsym/libs)
|
|
|
|
$CLOBBER_DIST_LIBS = 0; # turn on to clobber only aliases/files for libraries/sym files in dist
|
1999-08-26 02:19:18 +04:00
|
|
|
$CLOBBER_IDL_PROJECTS = 0; # turn on to clobber all IDL projects.
|
1999-05-26 05:38:36 +04:00
|
|
|
|
|
|
|
#-----------------------------------------------
|
|
|
|
# configuration variables that are preferences for the build style,
|
|
|
|
# and do not affect what is built.
|
|
|
|
#-----------------------------------------------
|
|
|
|
$CodeWarriorLib::CLOSE_PROJECTS_FIRST
|
1999-05-27 04:00:38 +04:00
|
|
|
= 0;
|
1999-05-26 05:38:36 +04:00
|
|
|
# 1 = close then make (for development),
|
|
|
|
# 0 = make then close (for tinderbox).
|
1999-05-27 04:00:38 +04:00
|
|
|
$USE_TIMESTAMPED_LOGS = 0;
|
1999-05-26 05:38:36 +04:00
|
|
|
#-----------------------------------------------
|
|
|
|
# END OF CONFIG SWITCHES
|
|
|
|
#-----------------------------------------------
|
1998-12-16 06:30:39 +03:00
|
|
|
|
|
|
|
if ($pull{all})
|
|
|
|
{
|
|
|
|
foreach $k (keys(%pull))
|
|
|
|
{
|
|
|
|
$pull{$k} = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($build{all})
|
|
|
|
{
|
|
|
|
foreach $k (keys(%build))
|
|
|
|
{
|
|
|
|
$build{$k} = 1;
|
|
|
|
}
|
|
|
|
}
|
1999-05-26 05:38:36 +04:00
|
|
|
if ($build{most})
|
|
|
|
{
|
|
|
|
### Just uncomment/comment to get the ones you want (if "most" is selected).
|
2000-06-28 09:01:04 +04:00
|
|
|
# $build{dist} = 0;
|
|
|
|
# $build{dist_runtime} = 0; # Implied by $build{dist}
|
|
|
|
# $build{xpidl} = 0;
|
|
|
|
# $build{idl} = 0;
|
|
|
|
# $build{stubs} = 0;
|
|
|
|
# $build{runtime} = 1;
|
|
|
|
# $build{common} = 1;
|
|
|
|
# $build{imglib} = 1;
|
|
|
|
# $build{necko} = 1;
|
|
|
|
# $build{security} = 1;
|
|
|
|
# $build{browserutils} = 1;
|
|
|
|
# $build{intl} = 1;
|
|
|
|
# $build{nglayout} = 1;
|
|
|
|
# $build{editor} = 1;
|
|
|
|
# $build{viewer} = 1;
|
|
|
|
# $build{xpapp} = 1;
|
|
|
|
# $build{extensions} = 1;
|
2000-06-02 04:51:09 +04:00
|
|
|
# $build{plugins} = 1;
|
2000-06-28 09:01:04 +04:00
|
|
|
# $build{mailnews} = 1;
|
|
|
|
# $build{apprunner} = 1;
|
|
|
|
# $build{resources} = 0;
|
1999-05-26 05:38:36 +04:00
|
|
|
}
|
1998-11-20 08:52:48 +03:00
|
|
|
|
|
|
|
# do the work
|
1999-05-26 05:38:36 +04:00
|
|
|
# you should not have to edit anything below
|
1998-11-20 08:52:48 +03:00
|
|
|
|
|
|
|
chdir("::::");
|
|
|
|
$MOZ_SRC = cwd();
|
|
|
|
|
1999-05-06 03:03:55 +04:00
|
|
|
if ($USE_TIMESTAMPED_LOGS)
|
1999-05-04 23:21:00 +04:00
|
|
|
{
|
1999-05-26 05:38:36 +04:00
|
|
|
#Use time-stamped names so that you don't clobber your previous log file!
|
1999-05-06 03:03:55 +04:00
|
|
|
my $now = localtime();
|
|
|
|
while ($now =~ s@:@.@) {} # replace all colons by periods
|
|
|
|
my $logdir = ":Build Logs:";
|
|
|
|
if (!stat($logdir))
|
|
|
|
{
|
|
|
|
print "Creating directory $logdir\n";
|
|
|
|
mkdir $logdir, 0777 || die "Couldn't create directory $logdir";
|
|
|
|
}
|
|
|
|
OpenErrorLog("$logdir$now");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
OpenErrorLog("NGLayoutBuildLog"); # Release build requires that name
|
|
|
|
#OpenErrorLog("Mozilla.BuildLog"); # Tinderbox requires that name
|
1999-05-04 23:21:00 +04:00
|
|
|
}
|
2000-05-02 05:21:07 +04:00
|
|
|
|
1998-11-20 08:52:48 +03:00
|
|
|
Moz::StopForErrors();
|
|
|
|
#Moz::DontStopForErrors();
|
|
|
|
|
2000-02-10 06:16:27 +03:00
|
|
|
Checkout();
|
1998-11-20 08:52:48 +03:00
|
|
|
|
2000-09-26 06:24:55 +04:00
|
|
|
ConfigureBuildSystem();
|
|
|
|
|
2000-09-20 23:35:24 +04:00
|
|
|
my(@gen_files) = (
|
2000-10-20 09:21:40 +04:00
|
|
|
":mozilla:config:nsBuildID.h",
|
|
|
|
":mozilla:xpfe:global:build.dtd"
|
2000-09-20 23:35:24 +04:00
|
|
|
);
|
|
|
|
SetBuildNumber(":mozilla:config:build_number", ":mozilla:config:aboutime.pl", \@gen_files);
|
1999-03-27 03:55:59 +03:00
|
|
|
|
1998-11-20 08:52:48 +03:00
|
|
|
chdir($MOZ_SRC);
|
|
|
|
BuildDist();
|
|
|
|
|
|
|
|
chdir($MOZ_SRC);
|
|
|
|
BuildProjects();
|
|
|
|
|
1999-05-26 05:38:36 +04:00
|
|
|
print "Build complete\n";
|