2010-04-13 18:22:34 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2003
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
2010-10-09 02:10:51 +00:00
|
|
|
# Christopher Seawood <cls@seawood.org> (original author)
|
|
|
|
# Christian Biesinger <cbiesinger@web.de>
|
2010-04-13 18:22:34 +00:00
|
|
|
# Ehsan Akhgari <ehsan.akhgari@gmail.com>
|
|
|
|
# Ted Mielczarek <ted.mielczarek@gmail.com>
|
|
|
|
# Steffen Wilberg <steffen.wilberg@web.de>
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
2010-10-09 02:10:51 +00:00
|
|
|
#
|
|
|
|
# IMPORTANT: Do not modify this file without checking the results of
|
|
|
|
# build/macosx/universal/fix-buildconfig in a Mac Universal binary.
|
|
|
|
#
|
2008-09-22 18:00:38 +00:00
|
|
|
#filter substitution
|
2003-08-11 14:51:44 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2010-04-13 18:22:34 +00:00
|
|
|
<meta charset="UTF-8">
|
2003-08-11 14:51:44 +00:00
|
|
|
<title>about:buildconfig</title>
|
2008-09-08 08:49:48 +00:00
|
|
|
<link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css">
|
2010-04-13 18:22:34 +00:00
|
|
|
<style type="text/css">
|
|
|
|
th { text-align: start; }
|
|
|
|
h2 { margin-top: 1.5em; }
|
|
|
|
th, td { vertical-align: top; }
|
|
|
|
</style>
|
2003-08-11 14:51:44 +00:00
|
|
|
</head>
|
2008-09-08 08:49:48 +00:00
|
|
|
<body class="aboutPageWideContainer">
|
2003-08-11 14:51:44 +00:00
|
|
|
<h1>about:buildconfig</h1>
|
2008-09-22 18:00:38 +00:00
|
|
|
#ifdef SOURCE_REPO
|
|
|
|
#ifdef SOURCE_CHANGESET
|
|
|
|
<h2>Source</h2>
|
|
|
|
<p>Built from <a href="@SOURCE_REPO@/rev/@SOURCE_CHANGESET@">@SOURCE_REPO@/rev/@SOURCE_CHANGESET@</a></p>
|
|
|
|
#endif
|
|
|
|
#endif
|
2003-08-11 14:51:44 +00:00
|
|
|
<h2>Build platform</h2>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>target</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>@target@</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<h2>Build tools</h2>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th>Compiler</th>
|
|
|
|
<th>Version</th>
|
|
|
|
<th>Compiler flags</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>@CC@</td>
|
|
|
|
<td>@CC_VERSION@</td>
|
|
|
|
<td>@CFLAGS@</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>@CXX@</td>
|
|
|
|
<td>@CXX_VERSION@</td>
|
|
|
|
<td>@CXXFLAGS@ @CPPFLAGS@</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<h2>Configure arguments</h2>
|
2010-04-13 18:22:34 +00:00
|
|
|
<p>@ac_configure_args@</p>
|
2011-08-09 21:16:26 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
<h2>Package name</h2>
|
|
|
|
<p>@ANDROID_PACKAGE_NAME@</p>
|
|
|
|
#endif
|
2003-08-11 14:51:44 +00:00
|
|
|
</body>
|
|
|
|
</html>
|