3 # ***** BEGIN LICENSE BLOCK *****
4 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
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/
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
16 # The Original Code is mozilla.org code.
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.
24 # Stephen Lamm <slamm@netscape.com>
26 # Alternatively, the contents of this file may be used under the terms of
27 # either of the GNU General Public License Version 2 or later (the "GPL"),
28 # or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 # in which case the provisions of the GPL or the LGPL are applicable instead
30 # of those above. If you wish to allow use of your version of this file only
31 # under the terms of either the GPL or the LGPL, and not to allow others to
32 # use your version of this file under the terms of the MPL, indicate your
33 # decision by deleting the provisions above and replace them with the notice
34 # and other provisions required by the GPL or the LGPL. If you do not delete
35 # the provisions above, a recipient may use your version of this file under
36 # the terms of any one of the MPL, the GPL or the LGPL.
38 # ***** END LICENSE BLOCK *****
40 # mozconfig2configure - Loads options from .mozconfig onto configure's
41 # command-line. See mozconfig-find for how the config file is
44 # The options from .mozconfig are inserted into the command-line
45 # before the real command-line options. This way the real options
46 # will override any .mozconfig options.
48 # .mozconfig is a shell script. To add an option to configure's
49 # command-line use the pre-defined function, ac_add_options,
51 # ac_add_options <configure-option> [<configure-option> ... ]
55 # ac_add_options --with-pthreads --enable-debug
57 # ac_add_options can be called multiple times in .mozconfig.
58 # Each call adds more options to configure's command-line.
60 # Note: $_AUTOCONF_TOOLS_DIR must be defined in the script that includes this.
65 # Escape shell characters, space, tab, dollar, quote, backslash.
66 _opt
=`echo $_opt | sed -e 's/\([\ \ \$\"\\]\)/\\\\\1/g;s/@\([^@]*\)@/\$\1/g;'`
67 _opt
=`echo $_opt | sed -e 's/@\([^@]*\)@/\$(\1)/g'`
69 # Avoid adding duplicates
71 # Note that all options in $ac_options are enclosed in quotes,
72 # so there will always be a last character to match [^-A-Za-z0-9_]
73 *"\"$_opt[^-A-Za-z0-9_]"* ) ;;
74 * ) mozconfig_ac_options
="$mozconfig_ac_options $_opt" ;;
79 ac_add_app_options
() {
82 if [ "$APP" = "$MOZ_BUILD_APP" ]; then
88 # These options are for client.mk
89 # configure can safely ignore them.
94 echo "Adding configure options from $MOZCONFIG:"
95 eval "set -- $mozconfig_ac_options"
103 #--------------------------------------------------
104 topsrcdir
=`dirname $0`
106 mozconfig_ac_options
=
108 # Save the real command-line options
111 # Escape shell characters, space, tab, dollar, quote, backslash.
112 _opt
=`echo $_opt | sed -e 's/\([\ \ \$\"\\]\)/\\\\\1/g;'`
113 ac_options
="$ac_options \"$_opt\""
116 MOZCONFIG
=`$_AUTOCONF_TOOLS_DIR/mozconfig-find $topsrcdir`
117 if [ "$MOZCONFIG" ]; then
121 if [ "$mozconfig_ac_options" ]; then
125 eval "set -- $mozconfig_ac_options $ac_options"