зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1142412 - Remove last jemalloc patch by using a workaround when running its configure. r=mshal
This commit is contained in:
Родитель
54863d2784
Коммит
3ec8bddc11
|
@ -9202,7 +9202,13 @@ if test -z "$MOZ_NATIVE_JEMALLOC" -a "$MOZ_MEMORY" && test -n "$MOZ_JEMALLOC3" -
|
|||
mkdir -p memory/jemalloc
|
||||
fi
|
||||
|
||||
# jemalloc's configure runs git to determine the version. But when building
|
||||
# from a gecko git clone, the git commands it uses is going to pick gecko's
|
||||
# information, not jemalloc's, which is useless. So pretend we don't have git
|
||||
# at all. That will make jemalloc's configure pick the in-tree VERSION file.
|
||||
(PATH="$srcdir/memory/jemalloc/helper:$PATH";
|
||||
AC_OUTPUT_SUBDIRS(memory/jemalloc/src)
|
||||
) || exit 1
|
||||
ac_configure_args="$_SUBDIR_CONFIG_ARGS"
|
||||
fi
|
||||
|
||||
|
|
|
@ -1,76 +0,0 @@
|
|||
diff --git a/configure b/configure
|
||||
index d727561..2c4d994 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -6970,31 +6970,8 @@ fi
|
||||
|
||||
|
||||
|
||||
-if test "x`test ! \"${srcroot}\" && cd \"${srcroot}\"; git rev-parse --is-inside-work-tree 2>/dev/null`" = "xtrue" ; then
|
||||
- rm -f "${objroot}VERSION"
|
||||
- for pattern in '[0-9].[0-9].[0-9]' '[0-9].[0-9].[0-9][0-9]' \
|
||||
- '[0-9].[0-9][0-9].[0-9]' '[0-9].[0-9][0-9].[0-9][0-9]' \
|
||||
- '[0-9][0-9].[0-9].[0-9]' '[0-9][0-9].[0-9].[0-9][0-9]' \
|
||||
- '[0-9][0-9].[0-9][0-9].[0-9]' \
|
||||
- '[0-9][0-9].[0-9][0-9].[0-9][0-9]'; do
|
||||
- if test ! -e "${objroot}VERSION" ; then
|
||||
- (test ! "${srcroot}" && cd "${srcroot}"; git describe --long --abbrev=40 --match="${pattern}") > "${objroot}VERSION.tmp" 2>/dev/null
|
||||
- if test $? -eq 0 ; then
|
||||
- mv "${objroot}VERSION.tmp" "${objroot}VERSION"
|
||||
- break
|
||||
- fi
|
||||
- fi
|
||||
- done
|
||||
-fi
|
||||
-rm -f "${objroot}VERSION.tmp"
|
||||
if test ! -e "${objroot}VERSION" ; then
|
||||
- if test ! -e "${srcroot}VERSION" ; then
|
||||
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: Missing VERSION file, and unable to generate it; creating bogus VERSION" >&5
|
||||
-$as_echo "Missing VERSION file, and unable to generate it; creating bogus VERSION" >&6; }
|
||||
- echo "0.0.0-0-g0000000000000000000000000000000000000000" > "${objroot}VERSION"
|
||||
- else
|
||||
cp ${srcroot}VERSION ${objroot}VERSION
|
||||
- fi
|
||||
fi
|
||||
jemalloc_version=`cat "${objroot}VERSION"`
|
||||
jemalloc_version_major=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print $1}'`
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 6f44b6c..b842e71 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -1137,35 +1137,8 @@ dnl ============================================================================
|
||||
dnl jemalloc configuration.
|
||||
dnl
|
||||
|
||||
-dnl Set VERSION if source directory is inside a git repository.
|
||||
-if test "x`test ! \"${srcroot}\" && cd \"${srcroot}\"; git rev-parse --is-inside-work-tree 2>/dev/null`" = "xtrue" ; then
|
||||
- dnl Pattern globs aren't powerful enough to match both single- and
|
||||
- dnl double-digit version numbers, so iterate over patterns to support up to
|
||||
- dnl version 99.99.99 without any accidental matches.
|
||||
- rm -f "${objroot}VERSION"
|
||||
- for pattern in ['[0-9].[0-9].[0-9]' '[0-9].[0-9].[0-9][0-9]' \
|
||||
- '[0-9].[0-9][0-9].[0-9]' '[0-9].[0-9][0-9].[0-9][0-9]' \
|
||||
- '[0-9][0-9].[0-9].[0-9]' '[0-9][0-9].[0-9].[0-9][0-9]' \
|
||||
- '[0-9][0-9].[0-9][0-9].[0-9]' \
|
||||
- '[0-9][0-9].[0-9][0-9].[0-9][0-9]']; do
|
||||
- if test ! -e "${objroot}VERSION" ; then
|
||||
- (test ! "${srcroot}" && cd "${srcroot}"; git describe --long --abbrev=40 --match="${pattern}") > "${objroot}VERSION.tmp" 2>/dev/null
|
||||
- if test $? -eq 0 ; then
|
||||
- mv "${objroot}VERSION.tmp" "${objroot}VERSION"
|
||||
- break
|
||||
- fi
|
||||
- fi
|
||||
- done
|
||||
-fi
|
||||
-rm -f "${objroot}VERSION.tmp"
|
||||
if test ! -e "${objroot}VERSION" ; then
|
||||
- if test ! -e "${srcroot}VERSION" ; then
|
||||
- AC_MSG_RESULT(
|
||||
- [Missing VERSION file, and unable to generate it; creating bogus VERSION])
|
||||
- echo "0.0.0-0-g0000000000000000000000000000000000000000" > "${objroot}VERSION"
|
||||
- else
|
||||
cp ${srcroot}VERSION ${objroot}VERSION
|
||||
- fi
|
||||
fi
|
||||
jemalloc_version=`cat "${objroot}VERSION"`
|
||||
jemalloc_version_major=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]1}'`
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
# jemalloc's configure runs git to determine the version. But when building
|
||||
# from a gecko git clone, the git commands it uses is going to pick gecko's
|
||||
# information, not jemalloc's, which is useless. So pretend we don't have git
|
||||
# at all. That will make jemalloc's configure pick the in-tree VERSION file.
|
||||
|
||||
exit 1
|
|
@ -6964,10 +6964,36 @@ else
|
|||
fi
|
||||
|
||||
|
||||
set -x
|
||||
|
||||
if test ! -e "${objroot}VERSION" ; then
|
||||
cp ${srcroot}VERSION ${objroot}VERSION
|
||||
if test "x`test ! \"${srcroot}\" && cd \"${srcroot}\"; git rev-parse --is-inside-work-tree 2>/dev/null`" = "xtrue" ; then
|
||||
rm -f "${objroot}VERSION"
|
||||
for pattern in '[0-9].[0-9].[0-9]' '[0-9].[0-9].[0-9][0-9]' \
|
||||
'[0-9].[0-9][0-9].[0-9]' '[0-9].[0-9][0-9].[0-9][0-9]' \
|
||||
'[0-9][0-9].[0-9].[0-9]' '[0-9][0-9].[0-9].[0-9][0-9]' \
|
||||
'[0-9][0-9].[0-9][0-9].[0-9]' \
|
||||
'[0-9][0-9].[0-9][0-9].[0-9][0-9]'; do
|
||||
if test ! -e "${objroot}VERSION" ; then
|
||||
(test ! "${srcroot}" && cd "${srcroot}"; git describe --long --abbrev=40 --match="${pattern}") > "${objroot}VERSION.tmp" 2>/dev/null
|
||||
if test $? -eq 0 ; then
|
||||
mv "${objroot}VERSION.tmp" "${objroot}VERSION"
|
||||
break
|
||||
fi
|
||||
fi
|
||||
done
|
||||
fi
|
||||
rm -f "${objroot}VERSION.tmp"
|
||||
if test ! -e "${objroot}VERSION" ; then
|
||||
if test ! -e "${srcroot}VERSION" ; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Missing VERSION file, and unable to generate it; creating bogus VERSION" >&5
|
||||
$as_echo "Missing VERSION file, and unable to generate it; creating bogus VERSION" >&6; }
|
||||
echo "0.0.0-0-g0000000000000000000000000000000000000000" > "${objroot}VERSION"
|
||||
else
|
||||
cp ${srcroot}VERSION ${objroot}VERSION
|
||||
fi
|
||||
fi
|
||||
|
||||
set +x
|
||||
jemalloc_version=`cat "${objroot}VERSION"`
|
||||
jemalloc_version_major=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print $1}'`
|
||||
jemalloc_version_minor=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print $2}'`
|
||||
|
|
|
@ -1133,8 +1133,35 @@ dnl ============================================================================
|
|||
dnl jemalloc configuration.
|
||||
dnl
|
||||
|
||||
dnl Set VERSION if source directory is inside a git repository.
|
||||
if test "x`test ! \"${srcroot}\" && cd \"${srcroot}\"; git rev-parse --is-inside-work-tree 2>/dev/null`" = "xtrue" ; then
|
||||
dnl Pattern globs aren't powerful enough to match both single- and
|
||||
dnl double-digit version numbers, so iterate over patterns to support up to
|
||||
dnl version 99.99.99 without any accidental matches.
|
||||
rm -f "${objroot}VERSION"
|
||||
for pattern in ['[0-9].[0-9].[0-9]' '[0-9].[0-9].[0-9][0-9]' \
|
||||
'[0-9].[0-9][0-9].[0-9]' '[0-9].[0-9][0-9].[0-9][0-9]' \
|
||||
'[0-9][0-9].[0-9].[0-9]' '[0-9][0-9].[0-9].[0-9][0-9]' \
|
||||
'[0-9][0-9].[0-9][0-9].[0-9]' \
|
||||
'[0-9][0-9].[0-9][0-9].[0-9][0-9]']; do
|
||||
if test ! -e "${objroot}VERSION" ; then
|
||||
(test ! "${srcroot}" && cd "${srcroot}"; git describe --long --abbrev=40 --match="${pattern}") > "${objroot}VERSION.tmp" 2>/dev/null
|
||||
if test $? -eq 0 ; then
|
||||
mv "${objroot}VERSION.tmp" "${objroot}VERSION"
|
||||
break
|
||||
fi
|
||||
fi
|
||||
done
|
||||
fi
|
||||
rm -f "${objroot}VERSION.tmp"
|
||||
if test ! -e "${objroot}VERSION" ; then
|
||||
if test ! -e "${srcroot}VERSION" ; then
|
||||
AC_MSG_RESULT(
|
||||
[Missing VERSION file, and unable to generate it; creating bogus VERSION])
|
||||
echo "0.0.0-0-g0000000000000000000000000000000000000000" > "${objroot}VERSION"
|
||||
else
|
||||
cp ${srcroot}VERSION ${objroot}VERSION
|
||||
fi
|
||||
fi
|
||||
jemalloc_version=`cat "${objroot}VERSION"`
|
||||
jemalloc_version_major=`echo ${jemalloc_version} | tr ".g-" " " | awk '{print [$]1}'`
|
||||
|
|
|
@ -14,8 +14,6 @@ autoconf
|
|||
git describe --long --abbrev=40 > VERSION
|
||||
rm -rf .git .gitignore .gitattributes autom4te.cache .autom4te.cfg
|
||||
|
||||
patch -p1 < ../0001-Dont-overwrite-VERSION-on-a-git-repository.patch
|
||||
|
||||
cd ..
|
||||
hg addremove -q src
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче