~ubuntu-branches/ubuntu/oneiric/lightning-extension/oneiric-proposed

« back to all changes in this revision

Viewing changes to build/autoconf/mozconfig2client-mk

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2011-12-29 12:14:14 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20111229121414-q6pyb0vyeprgpl4e
Tags: 1.1+build1-0ubuntu0.11.10.1
* New upstream stable release (CALENDAR_1_1_BUILD1) (LP: #909599)

* Refresh debian/patches/02_fix_system_libxul_build.patch
* Add debian/patches/03_maxversion_override.patch to ensure compatibility
  with Thunderbird 9 point releases
* Add the new python IDL parser to the tarball
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
#
 
3
# ***** BEGIN LICENSE BLOCK *****
 
4
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
5
#
 
6
# The contents of this file are subject to the Mozilla Public License Version
 
7
# 1.1 (the "License"); you may not use this file except in compliance with
 
8
# the License. You may obtain a copy of the License at
 
9
# http://www.mozilla.org/MPL/
 
10
#
 
11
# Software distributed under the License is distributed on an "AS IS" basis,
 
12
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
13
# for the specific language governing rights and limitations under the
 
14
# License.
 
15
#
 
16
# The Original Code is mozilla.org code.
 
17
#
 
18
# The Initial Developer of the Original Code is
 
19
# Netscape Communications Corporation.
 
20
# Portions created by the Initial Developer are Copyright (C) 1999
 
21
# the Initial Developer. All Rights Reserved.
 
22
#
 
23
# Contributor(s):
 
24
#   Stephen Lamm <slamm@netscape.com>
 
25
#   Siddharth Agarwal <sagarwal@mozilla.com>
 
26
#
 
27
# Alternatively, the contents of this file may be used under the terms of
 
28
# either of the GNU General Public License Version 2 or later (the "GPL"),
 
29
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
30
# in which case the provisions of the GPL or the LGPL are applicable instead
 
31
# of those above. If you wish to allow use of your version of this file only
 
32
# under the terms of either the GPL or the LGPL, and not to allow others to
 
33
# use your version of this file under the terms of the MPL, indicate your
 
34
# decision by deleting the provisions above and replace them with the notice
 
35
# and other provisions required by the GPL or the LGPL. If you do not delete
 
36
# the provisions above, a recipient may use your version of this file under
 
37
# the terms of any one of the MPL, the GPL or the LGPL.
 
38
#
 
39
# ***** END LICENSE BLOCK *****
 
40
 
 
41
# mozconfig2client-mk - Translates .mozconfig into options for client.mk.
 
42
#    Prints defines to stdout.
 
43
#
 
44
# See mozconfig2configure for more details
 
45
 
 
46
print_header() {
 
47
  _mozconfig=${MOZCONFIG:-$HOME/.mozconfig}
 
48
  cat >> $tmp_file <<EOF
 
49
# gmake
 
50
# This file is automatically generated for client.mk.
 
51
# Do not edit. Edit $_mozconfig instead.
 
52
# To create a new .mozconfig file, you can visit,
 
53
#   http://webtools.mozilla.org/build/config.cgi
 
54
 
 
55
EOF
 
56
}
 
57
 
 
58
ac_add_options() {
 
59
  echo "# $* is used by configure (not client.mk)" >> $tmp_file
 
60
}
 
61
 
 
62
ac_add_app_options() {
 
63
  echo "# $* is used by configure (not client.mk)" >> $tmp_file
 
64
}
 
65
 
 
66
mk_add_options() {
 
67
  for _opt
 
68
  do
 
69
    # Escape shell characters, space, tab, dollar, quote, backslash,
 
70
    # and substitute '@<word>@' with '$(<word>)'.
 
71
    _opt=`echo "$_opt" | sed -e 's/\([\"\\]\)/\\\1/g; s/@\([^@]*\)@/\$(\1)/g;'`
 
72
    echo $_opt;
 
73
    opts="${opts:+$opts^}$_opt";
 
74
  done >> $tmp_file
 
75
}
 
76
 
 
77
mk_echo_options() {
 
78
  echo "Adding client.mk options from $MOZCONFIG:"
 
79
  IFS=^
 
80
  for _opt in $opts; do
 
81
    echo "    $_opt"
 
82
  done
 
83
}
 
84
 
 
85
# Main
 
86
#--------------------------------------------------
 
87
 
 
88
scriptdir=`dirname $0`
 
89
topsrcdir=$1
 
90
out_file=$2
 
91
tmp_file="$out_file-tmp$$"
 
92
opts=""
 
93
 
 
94
trap "rm -f $tmp_file; exit 1" 1 2 15
 
95
 
 
96
print_header > $tmp_file
 
97
 
 
98
# If the path changes, configure should be rerun
 
99
echo "# PATH=$PATH" >> $tmp_file
 
100
 
 
101
# If FOUND_MOZCONFIG isn't set, look for it and make sure the script doesn't error out
 
102
isfoundset=${FOUND_MOZCONFIG+yes}
 
103
if [ -z $isfoundset ]; then
 
104
  FOUND_MOZCONFIG=`$scriptdir/mozconfig-find $topsrcdir`
 
105
  if [ $? -ne 0 ]; then
 
106
    echo '$(error Fix above errors before continuing.)' >> $tmp_file
 
107
  else
 
108
    isfoundset=yes
 
109
  fi
 
110
fi
 
111
 
 
112
if [ -n $isfoundset ]; then
 
113
  if [ "$FOUND_MOZCONFIG" ]
 
114
  then
 
115
    . "$FOUND_MOZCONFIG"
 
116
  fi
 
117
  echo "export FOUND_MOZCONFIG := $FOUND_MOZCONFIG" >> $tmp_file
 
118
 
 
119
  if [ "$opts" ]; then
 
120
    mk_echo_options
 
121
  fi
 
122
fi
 
123
 
 
124
if test -f $out_file && cmp -s $tmp_file $out_file; then
 
125
  rm $tmp_file
 
126
else
 
127
  mv -f $tmp_file $out_file
 
128
fi