mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
c0ec608df6
Changes: * Added EXTRA_COMPONENTS variable to build. Use it to automagically install files into the components dir. * Added SYSINSTALL variable. Use it install files onto the system. * Move mozilla-config generation from configure to makefiles * mozilla-config will now generate paths based upon the MRE-based directory layout. * Generate mozilla script from template The installation heirarchy currently looks like: $prefix -> /bin/mozilla /bin/mozilla-config /include/mozilla-ver/* /lib/mozilla-ver (mozappdir) /components /res /defaults /chrome There is preliminary build support for MRE dirs as well though the component manager hasn't had MRE support added yet. $prefix -> /lib/mre/mre-ver (mredir) /components
135 lines
2.2 KiB
Bash
Executable File
135 lines
2.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
prefix=%prefix%
|
|
exec_prefix=%exec_prefix%
|
|
exec_prefix_set=no
|
|
|
|
usage()
|
|
{
|
|
cat <<EOF
|
|
Usage: mozilla-config [OPTIONS] [LIBRARIES]
|
|
Options:
|
|
[--prefix[=DIR]]
|
|
[--exec-prefix[=DIR]]
|
|
[--version]
|
|
[--defines]
|
|
[--libs] [libraries]
|
|
[--cflags] [components]
|
|
Components:
|
|
*
|
|
Libraries:
|
|
xpcom
|
|
nspr
|
|
js
|
|
jsj
|
|
gfx
|
|
EOF
|
|
exit $1
|
|
}
|
|
|
|
if test $# -eq 0; then
|
|
usage 1 1>&2
|
|
fi
|
|
|
|
while test $# -gt 0; do
|
|
case "$1" in
|
|
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
|
*) optarg= ;;
|
|
esac
|
|
|
|
case $1 in
|
|
--prefix=*)
|
|
prefix=$optarg
|
|
if test $exec_prefix_set = no ; then
|
|
exec_prefix=$optarg
|
|
fi
|
|
;;
|
|
--prefix)
|
|
echo_prefix=yes
|
|
;;
|
|
--exec-prefix=*)
|
|
exec_prefix=$optarg
|
|
exec_prefix_set=yes
|
|
;;
|
|
--exec-prefix)
|
|
echo_exec_prefix=yes
|
|
;;
|
|
--version)
|
|
echo -1
|
|
exit 0
|
|
;;
|
|
--cflags)
|
|
if test "%includedir%" != /usr/include ; then
|
|
includes="-I%includedir%"
|
|
fi
|
|
echo_cflags=yes
|
|
;;
|
|
--defines)
|
|
echo_defines=yes
|
|
;;
|
|
--libs)
|
|
echo_libs=yes
|
|
;;
|
|
xpcom|js|nspr|gfx|jsj)
|
|
echo_components="$echo_components $1"
|
|
echo_libraries="$echo_libraries $1"
|
|
;;
|
|
xpconnect)
|
|
echo_components="$echo_components $1"
|
|
;;
|
|
"")
|
|
usage 1 1>&2
|
|
;;
|
|
*)
|
|
echo_components="$echo_components $1"
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
if test "$echo_prefix" = "yes"; then
|
|
echo $prefix
|
|
fi
|
|
if test "$echo_exec_prefix" = "yes"; then
|
|
echo $exec_prefix
|
|
fi
|
|
|
|
if test "$echo_defines" = "yes"; then
|
|
echo %DEFS%
|
|
fi
|
|
|
|
if test "$echo_cflags" = "yes"; then
|
|
nspr_cflags="%FULL_NSPR_CFLAGS%"
|
|
for n in $echo_components; do
|
|
component_includes="$component_includes -I%includedir%/$n"
|
|
done
|
|
echo $component_includes $includes $nspr_cflags
|
|
fi
|
|
|
|
_nspr_libs="%FULL_NSPR_LIBS%"
|
|
_xpcom_libs="-lxpcom $_nspr_libs"
|
|
_js_libs="-ljs"
|
|
|
|
if test "$echo_libs" = "yes"; then
|
|
for l in $echo_libraries; do
|
|
case "$l" in
|
|
gfx)
|
|
libs="$libs -lgkgfx $_xpcom_libs"
|
|
;;
|
|
xpcom)
|
|
libs="$libs $_xpcom_libs"
|
|
;;
|
|
nspr)
|
|
libs="$libs $_nspr_libs"
|
|
;;
|
|
js)
|
|
libs="$libs $_js_libs"
|
|
;;
|
|
jsj)
|
|
libs="$libs -ljsj $_js_libs $_xpcom_libs"
|
|
;;
|
|
esac
|
|
done
|
|
echo -L%libdir% $libs
|
|
fi
|