1999-02-19 20:24:48 +03:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
1999-02-19 20:24:48 +03:00
|
|
|
|
2000-03-22 00:09:11 +03:00
|
|
|
# mozconfig2client-mk - Translates .mozconfig into options for client.mk.
|
1999-02-19 20:24:48 +03:00
|
|
|
# Prints defines to stdout.
|
|
|
|
#
|
2000-03-22 00:09:11 +03:00
|
|
|
# See mozconfig2configure for more details
|
1999-02-19 20:24:48 +03:00
|
|
|
|
1999-02-25 22:21:29 +03:00
|
|
|
print_header() {
|
2012-06-19 11:12:43 +04:00
|
|
|
cat <<EOF
|
2000-03-23 00:56:49 +03:00
|
|
|
# gmake
|
|
|
|
# This file is automatically generated for client.mk.
|
2012-08-15 20:36:43 +04:00
|
|
|
# Do not edit. Edit $FOUND_MOZCONFIG instead.
|
2000-03-23 00:56:49 +03:00
|
|
|
|
|
|
|
EOF
|
1999-02-25 22:21:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ac_add_options() {
|
2013-07-23 02:26:09 +04:00
|
|
|
for _opt
|
|
|
|
do
|
|
|
|
case "$_opt" in
|
|
|
|
--target=*)
|
|
|
|
echo $_opt | sed s/--target/CONFIG_GUESS/
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "# $_opt is used by configure (not client.mk)"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2005-09-30 21:39:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ac_add_app_options() {
|
2012-06-19 11:12:43 +04:00
|
|
|
echo "# $* is used by configure (not client.mk)"
|
1999-02-25 22:21:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
mk_add_options() {
|
2000-03-23 05:04:22 +03:00
|
|
|
for _opt
|
|
|
|
do
|
1999-02-25 22:21:29 +03:00
|
|
|
# Escape shell characters, space, tab, dollar, quote, backslash,
|
1999-05-18 02:36:09 +04:00
|
|
|
# and substitute '@<word>@' with '$(<word>)'.
|
2012-08-07 01:07:11 +04:00
|
|
|
_opt=`echo "$_opt" | sed -e 's/\([\"\\]\)/\\\\\1/g; s/@\([^@]*\)@/\$(\1)/g;'`
|
2000-03-23 00:56:49 +03:00
|
|
|
echo $_opt;
|
1999-02-19 20:24:48 +03:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2000-03-14 06:18:54 +03:00
|
|
|
# Main
|
|
|
|
#--------------------------------------------------
|
|
|
|
|
|
|
|
scriptdir=`dirname $0`
|
|
|
|
topsrcdir=$1
|
1999-02-20 10:47:04 +03:00
|
|
|
|
1999-08-28 03:03:27 +04:00
|
|
|
# If the path changes, configure should be rerun
|
2012-06-19 11:12:43 +04:00
|
|
|
echo "# PATH=$PATH"
|
1999-02-20 10:47:04 +03:00
|
|
|
|
2011-09-09 00:30:31 +04:00
|
|
|
# If FOUND_MOZCONFIG isn't set, look for it and make sure the script doesn't error out
|
|
|
|
isfoundset=${FOUND_MOZCONFIG+yes}
|
|
|
|
if [ -z $isfoundset ]; then
|
|
|
|
FOUND_MOZCONFIG=`$scriptdir/mozconfig-find $topsrcdir`
|
|
|
|
if [ $? -ne 0 ]; then
|
2012-06-19 11:12:43 +04:00
|
|
|
echo '$(error Fix above errors before continuing.)'
|
2011-09-09 00:30:31 +04:00
|
|
|
else
|
|
|
|
isfoundset=yes
|
|
|
|
fi
|
2000-03-23 00:56:49 +03:00
|
|
|
fi
|
|
|
|
|
2011-09-09 00:30:31 +04:00
|
|
|
if [ -n $isfoundset ]; then
|
|
|
|
if [ "$FOUND_MOZCONFIG" ]
|
|
|
|
then
|
2012-08-15 20:36:43 +04:00
|
|
|
print_header
|
2011-09-09 00:30:31 +04:00
|
|
|
. "$FOUND_MOZCONFIG"
|
2013-09-05 04:01:44 +04:00
|
|
|
echo "FOUND_MOZCONFIG := $FOUND_MOZCONFIG"
|
2011-09-09 00:30:31 +04:00
|
|
|
fi
|
1999-02-19 22:40:41 +03:00
|
|
|
fi
|