1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/content/buildconfig.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,72 @@ 1.4 +<!DOCTYPE html> 1.5 +# This Source Code Form is subject to the terms of the Mozilla Public 1.6 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.8 +# 1.9 +#filter substitution 1.10 +<html> 1.11 +<head> 1.12 + <meta charset="UTF-8"> 1.13 + <meta name="viewport" content="width=device-width; user-scalable=false;"> 1.14 + <title>about:buildconfig</title> 1.15 + <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css"> 1.16 + <style type="text/css"> 1.17 + th { text-align: start; } 1.18 + h2 { margin-top: 1.5em; } 1.19 + th, td { vertical-align: top; } 1.20 + </style> 1.21 +</head> 1.22 +<body class="aboutPageWideContainer"> 1.23 +<h1>about:buildconfig</h1> 1.24 +#ifdef BUILD_HOSTNAME 1.25 +<h2>Build Machine</h2> 1.26 +<p>@BUILD_HOSTNAME@</p> 1.27 +#endif 1.28 +#ifdef SOURCE_REPO 1.29 +#ifdef SOURCE_CHANGESET 1.30 +<h2>Source</h2> 1.31 +<p>Built from <a href="@SOURCE_REPO@/rev/@SOURCE_CHANGESET@">@SOURCE_REPO@/rev/@SOURCE_CHANGESET@</a></p> 1.32 +#endif 1.33 +#elifdef SOURCE_GIT_COMMIT 1.34 +<h2>Source</h2> 1.35 +<p>Built from git commit <a href="#">@SOURCE_GIT_COMMIT@</a></p> 1.36 +#endif 1.37 +<h2>Build platform</h2> 1.38 +<table> 1.39 + <tbody> 1.40 + <tr> 1.41 + <th>target</th> 1.42 + </tr> 1.43 + <tr> 1.44 + <td>@target@</td> 1.45 + </tr> 1.46 + </tbody> 1.47 +</table> 1.48 +<h2>Build tools</h2> 1.49 +<table> 1.50 + <tbody> 1.51 + <tr> 1.52 + <th>Compiler</th> 1.53 + <th>Version</th> 1.54 + <th>Compiler flags</th> 1.55 + </tr> 1.56 + <tr> 1.57 + <td>@CC@</td> 1.58 + <td>@CC_VERSION@</td> 1.59 + <td>@CFLAGS@</td> 1.60 + </tr> 1.61 + <tr> 1.62 + <td>@CXX@</td> 1.63 + <td>@CXX_VERSION@</td> 1.64 + <td>@CXXFLAGS@ @CPPFLAGS@</td> 1.65 + </tr> 1.66 + </tbody> 1.67 +</table> 1.68 +<h2>Configure arguments</h2> 1.69 +<p>@ac_configure_args@</p> 1.70 +#ifdef ANDROID 1.71 +<h2>Package name</h2> 1.72 +<p>@ANDROID_PACKAGE_NAME@</p> 1.73 +#endif 1.74 +</body> 1.75 +</html>