зеркало из https://github.com/mozilla/gecko-dev.git
Bug 514211 - Sweep some mouse turds out of build/unix/, r=ted
This commit is contained in:
Родитель
783b33a49e
Коммит
8490d39416
|
@ -1,142 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
prefix=%prefix%
|
||||
exec_prefix=%exec_prefix%
|
||||
exec_prefix_set=no
|
||||
|
||||
usage()
|
||||
{
|
||||
cat <<EOF
|
||||
Usage: $0 [OPTIONS] [LIBRARIES]
|
||||
Options:
|
||||
[--prefix[=DIR]]
|
||||
[--exec-prefix[=DIR]]
|
||||
[--version]
|
||||
[--defines]
|
||||
[--libs] [libraries]
|
||||
[--cflags] [components]
|
||||
[--idlflags]
|
||||
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 %MOZILLA_VERSION%
|
||||
exit 0
|
||||
;;
|
||||
--cflags)
|
||||
if test "%includedir%" != /usr/include ; then
|
||||
includes="-I%includedir%"
|
||||
fi
|
||||
echo_cflags=yes
|
||||
;;
|
||||
--defines)
|
||||
echo_defines=yes
|
||||
;;
|
||||
--libs)
|
||||
echo_libs=yes
|
||||
;;
|
||||
--idlflags)
|
||||
echo_idlflags=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
|
||||
|
||||
if test "$echo_idlflags" = "yes"; then
|
||||
echo "-I%idldir%"
|
||||
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
|
|
@ -1,8 +0,0 @@
|
|||
USE_PTHREADS=@MOZ_NSPRENV_USE_PTHREADS@
|
||||
BUILD_OPT=@MOZ_NSPRENV_BUILD_OPT@
|
||||
NS_USE_GCC=@MOZ_NSPRENV_NS_USE_GCC@
|
||||
NO_MDUPDATE=@MOZ_NSPRENV_NO_MDUPDATE@
|
||||
NS_USE_NATIVE=@MOZ_NSPRENV_NS_USE_NATIVE@
|
||||
MOZILLA_CLIENT=@MOZ_NSPRENV_MOZILLA_CLIENT@
|
||||
CLASSIC_NSPR=@MOZ_NSPRENV_CLASSIC_NSPR@
|
||||
GC_LEAK_DETECTOR=@MOZ_NSPRENV_GC_LEAK_DETECTOR@
|
|
@ -1,12 +0,0 @@
|
|||
DIST=@MOZ_NSPRENV_DIST@
|
||||
MOZ_NSPRENV_OVERRIDE_MAKE=@MOZ_NSPRENV_OVERRIDE_MAKE@
|
||||
MOZ_NSPRENV_OVERRIDE_DSO_LDOPTS=@MOZ_NSPRENV_OVERRIDE_DSO_LDOPTS@
|
||||
|
||||
ifdef MOZ_NSPRENV_OVERRIDE_MAKE
|
||||
MAKE=$(MOZ_NSPRENV_OVERRIDE_MAKE)
|
||||
endif
|
||||
|
||||
ifdef MOZ_NSPRENV_OVERRIDE_DSO_LDOPTS
|
||||
DSO_LDOPTS=$(MOZ_NSPRENV_OVERRIDE_DSO_LDOPTS)
|
||||
endif
|
||||
|
Загрузка…
Ссылка в новой задаче