This is an automated email from the git hooks/post-receive script. aurel32 pushed a commit to branch glibc-2.23 in repository glibc.
commit 03218fd2380fa85383007b40e4c6f63c3f6e0df9 Author: Aurelien Jarno <[email protected]> Date: Sun Mar 13 14:44:37 2016 +0100 patches/kfreebsd/local-fbtl.diff: update to revision 5940 (from glibc-bsd). --- debian/changelog | 2 + debian/patches/kfreebsd/local-fbtl.diff | 189 -------------------------------- 2 files changed, 2 insertions(+), 189 deletions(-) diff --git a/debian/changelog b/debian/changelog index d541d54..0725a72 100644 --- a/debian/changelog +++ b/debian/changelog @@ -75,6 +75,8 @@ glibc (2.23-0experimental0) UNRELEASED; urgency=medium test as xfail, it is a known issue and not a regression. * debian/testsuite-xfail-debian.mk (mipsel): mark a few math tests are failing, due to a bug in the Loongson 3 FPU. + * patches/kfreebsd/local-fbtl.diff: update to revision 5940 (from + glibc-bsd). -- Aurelien Jarno <[email protected]> Sat, 12 Mar 2016 12:00:31 +0100 diff --git a/debian/patches/kfreebsd/local-fbtl.diff b/debian/patches/kfreebsd/local-fbtl.diff index 71a5ae1..952dce8 100644 --- a/debian/patches/kfreebsd/local-fbtl.diff +++ b/debian/patches/kfreebsd/local-fbtl.diff @@ -32014,132 +32014,6 @@ + +#endif /* bits/stdio-lock.h */ --- /dev/null -+++ b/fbtl/sysdeps/pthread/configure -@@ -0,0 +1,80 @@ -+# This file is generated from configure.in by Autoconf. DO NOT EDIT! -+ -+if test "x$libc_cv_gcc___thread" != xyes; then -+ as_fn_error $? "compiler support for __thread is required" "$LINENO" 5 -+fi -+ -+if test "x${libc_cv_visibility_attribute}" != xyes || -+ test "x${libc_cv_broken_visibility_attribute}" != xno; then -+ as_fn_error $? "working compiler support for visibility attribute is required" "$LINENO" 5 -+fi -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for forced unwind support" >&5 -+$as_echo_n "checking for forced unwind support... " >&6; } -+if ${libc_cv_forced_unwind+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+#include <unwind.h> -+int -+main () -+{ -+ -+struct _Unwind_Exception exc; -+struct _Unwind_Context *context; -+_Unwind_GetCFA (context) -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ libc_cv_forced_unwind=yes -+else -+ libc_cv_forced_unwind=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_forced_unwind" >&5 -+$as_echo "$libc_cv_forced_unwind" >&6; } -+if test $libc_cv_forced_unwind = yes; then -+ $as_echo "#define HAVE_FORCED_UNWIND 1" >>confdefs.h -+ -+ old_CFLAGS="$CFLAGS" -+ CFLAGS="$CFLAGS -Werror -fexceptions" -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C cleanup handling" >&5 -+$as_echo_n "checking for C cleanup handling... " >&6; } -+if ${libc_cv_c_cleanup+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext -+/* end confdefs.h. */ -+ -+extern void some_function (void); -+void cl (void *a) { } -+int -+main () -+{ -+ -+ int a __attribute__ ((cleanup (cl))); -+ some_function () -+ ; -+ return 0; -+} -+_ACEOF -+if ac_fn_c_try_compile "$LINENO"; then : -+ libc_cv_c_cleanup=yes -+else -+ libc_cv_c_cleanup=no -+fi -+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_c_cleanup" >&5 -+$as_echo "$libc_cv_c_cleanup" >&6; } -+ CFLAGS="$old_CFLAGS" -+ if test $libc_cv_c_cleanup = no; then -+ as_fn_error $? "the compiler must support C cleanup handling" "$LINENO" 5 -+ fi -+else -+ as_fn_error $? "forced unwind support is required" "$LINENO" 5 -+fi ---- /dev/null -+++ b/fbtl/sysdeps/pthread/configure.in -@@ -0,0 +1,40 @@ -+dnl configure fragment for new libpthread implementation. -+GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. -+ -+if test "x$libc_cv_gcc___thread" != xyes; then -+ AC_MSG_ERROR(compiler support for __thread is required) -+fi -+ -+if test "x${libc_cv_visibility_attribute}" != xyes || -+ test "x${libc_cv_broken_visibility_attribute}" != xno; then -+ AC_MSG_ERROR(working compiler support for visibility attribute is required) -+fi -+ -+dnl Iff <unwind.h> is available, make sure it is the right one and it -+dnl contains struct _Unwind_Exception. -+AC_CACHE_CHECK(dnl -+for forced unwind support, libc_cv_forced_unwind, [dnl -+AC_TRY_COMPILE([#include <unwind.h>], [ -+struct _Unwind_Exception exc; -+struct _Unwind_Context *context; -+_Unwind_GetCFA (context)], -+libc_cv_forced_unwind=yes, libc_cv_forced_unwind=no)]) -+if test $libc_cv_forced_unwind = yes; then -+ AC_DEFINE(HAVE_FORCED_UNWIND) -+dnl Check for C cleanup handling. -+ old_CFLAGS="$CFLAGS" -+ CFLAGS="$CFLAGS -Werror -fexceptions" -+ AC_CACHE_CHECK([for C cleanup handling], libc_cv_c_cleanup, [dnl -+ AC_TRY_COMPILE([ -+extern void some_function (void); -+void cl (void *a) { }], [ -+ int a __attribute__ ((cleanup (cl))); -+ some_function ()], -+libc_cv_c_cleanup=yes, libc_cv_c_cleanup=no)]) -+ CFLAGS="$old_CFLAGS" -+ if test $libc_cv_c_cleanup = no; then -+ AC_MSG_ERROR([the compiler must support C cleanup handling]) -+ fi -+else -+ AC_MSG_ERROR(forced unwind support is required) -+fi ---- /dev/null +++ b/fbtl/sysdeps/pthread/createthread.c @@ -0,0 +1,298 @@ +/* Copyright (C) 2002-2013 Free Software Foundation, Inc. @@ -36070,69 +35944,6 @@ +CFLAGS-pthread_create.c += -DMULTI_PAGE_ALIASING=65536 +endif --- /dev/null -+++ b/fbtl/sysdeps/x86_64/configure -@@ -0,0 +1,34 @@ -+# This file is generated from configure.in by Autoconf. DO NOT EDIT! -+ # Local configure fragment for sysdeps/i386. -+ -+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for .cfi_personality and .cfi_lsda pseudo-ops" >&5 -+$as_echo_n "checking for .cfi_personality and .cfi_lsda pseudo-ops... " >&6; } -+if ${libc_cv_asm_cfi_personality+:} false; then : -+ $as_echo_n "(cached) " >&6 -+else -+ cat > conftest.s <<EOF -+${libc_cv_dot_text} -+foo: -+ .cfi_startproc -+ .cfi_personality 0, foo -+ .cfi_lsda 0, foo -+ .cfi_endproc -+EOF -+ if { ac_try='${CC-cc} $ASFLAGS -c conftest.s 1>&5' -+ { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 -+ (eval $ac_try) 2>&5 -+ ac_status=$? -+ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 -+ test $ac_status = 0; }; }; then -+ libc_cv_asm_cfi_personality=yes -+ else -+ libc_cv_asm_cfi_personality=no -+ fi -+ rm -f conftest* -+ -+fi -+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_cfi_personality" >&5 -+$as_echo "$libc_cv_asm_cfi_personality" >&6; } -+if test x"$libc_cv_asm_cfi_personality" != xyes; then -+ as_fn_error $? "assembler too old, .cfi_personality support missing" "$LINENO" 5 -+fi ---- /dev/null -+++ b/fbtl/sysdeps/x86_64/configure.in -@@ -0,0 +1,23 @@ -+GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. -+# Local configure fragment for sysdeps/i386. -+ -+AC_CACHE_CHECK([for .cfi_personality and .cfi_lsda pseudo-ops], -+ libc_cv_asm_cfi_personality, [dnl -+ cat > conftest.s <<EOF -+${libc_cv_dot_text} -+foo: -+ .cfi_startproc -+ .cfi_personality 0, foo -+ .cfi_lsda 0, foo -+ .cfi_endproc -+EOF -+ if AC_TRY_COMMAND(${CC-cc} $ASFLAGS -c conftest.s 1>&AS_MESSAGE_LOG_FD); then -+ libc_cv_asm_cfi_personality=yes -+ else -+ libc_cv_asm_cfi_personality=no -+ fi -+ rm -f conftest* -+]) -+if test x"$libc_cv_asm_cfi_personality" != xyes; then -+ AC_MSG_ERROR([assembler too old, .cfi_personality support missing]) -+fi ---- /dev/null +++ b/fbtl/sysdeps/x86_64/pthread_spin_init.c @@ -0,0 +1 @@ +#include "../i386/pthread_spin_init.c" -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-glibc/glibc.git

