[Glibc-bsd-commits] r4417 - in trunk/glibc-ports/kfreebsd: . i386/linuxthreads mips/linuxthreads x86_64/linuxthreads

Petr Salinger ps-guest at alioth.debian.org
Wed May 8 12:38:00 UTC 2013


Author: ps-guest
Date: 2013-05-08 12:38:00 +0000 (Wed, 08 May 2013)
New Revision: 4417

Modified:
   trunk/glibc-ports/kfreebsd/configure
   trunk/glibc-ports/kfreebsd/configure.in
   trunk/glibc-ports/kfreebsd/i386/linuxthreads/pt-machine.h
   trunk/glibc-ports/kfreebsd/mips/linuxthreads/pt-machine.h
   trunk/glibc-ports/kfreebsd/x86_64/linuxthreads/pt-machine.h
Log:
fixes for glibc 2.17


Modified: trunk/glibc-ports/kfreebsd/configure
===================================================================
--- trunk/glibc-ports/kfreebsd/configure	2013-05-08 09:04:49 UTC (rev 4416)
+++ trunk/glibc-ports/kfreebsd/configure	2013-05-08 12:38:00 UTC (rev 4417)
@@ -303,7 +303,7 @@
 # We need some extensions to the `ldd' script.
 case "$machine" in
   x86_64*)
-    ldd_rewrite_script=../ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldd-rewrite.sed
+    ldd_rewrite_script=$dir/x86_64/ldd-rewrite.sed
     ;;
   *)
     ;;

Modified: trunk/glibc-ports/kfreebsd/configure.in
===================================================================
--- trunk/glibc-ports/kfreebsd/configure.in	2013-05-08 09:04:49 UTC (rev 4416)
+++ trunk/glibc-ports/kfreebsd/configure.in	2013-05-08 12:38:00 UTC (rev 4417)
@@ -236,7 +236,7 @@
 changequote(,)
 case "$machine" in
   x86_64*)
-    ldd_rewrite_script=../ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldd-rewrite.sed
+    ldd_rewrite_script=$dir/x86_64/ldd-rewrite.sed
     ;;
   *)
     ;;

Modified: trunk/glibc-ports/kfreebsd/i386/linuxthreads/pt-machine.h
===================================================================
--- trunk/glibc-ports/kfreebsd/i386/linuxthreads/pt-machine.h	2013-05-08 09:04:49 UTC (rev 4416)
+++ trunk/glibc-ports/kfreebsd/i386/linuxthreads/pt-machine.h	2013-05-08 12:38:00 UTC (rev 4417)
@@ -22,6 +22,9 @@
 #ifndef _FREEBSD_PT_MACHINE_H
 #define _FREEBSD_PT_MACHINE_H   1
 
+#define HAVE___THREAD 1
+#define USE_TLS 1
+
 /*
   some parts are common with linux/i386 version
 

Modified: trunk/glibc-ports/kfreebsd/mips/linuxthreads/pt-machine.h
===================================================================
--- trunk/glibc-ports/kfreebsd/mips/linuxthreads/pt-machine.h	2013-05-08 09:04:49 UTC (rev 4416)
+++ trunk/glibc-ports/kfreebsd/mips/linuxthreads/pt-machine.h	2013-05-08 12:38:00 UTC (rev 4417)
@@ -21,6 +21,9 @@
 #ifndef _FREEBSD_PT_MACHINE_H
 #define _FREEBSD_PT_MACHINE_H   1
 
+#define HAVE___THREAD 1
+#define USE_TLS 1
+
 /*
   almost all parts are common with linux version
  */

Modified: trunk/glibc-ports/kfreebsd/x86_64/linuxthreads/pt-machine.h
===================================================================
--- trunk/glibc-ports/kfreebsd/x86_64/linuxthreads/pt-machine.h	2013-05-08 09:04:49 UTC (rev 4416)
+++ trunk/glibc-ports/kfreebsd/x86_64/linuxthreads/pt-machine.h	2013-05-08 12:38:00 UTC (rev 4417)
@@ -21,6 +21,9 @@
 #ifndef _FREEBSD_PT_MACHINE_H
 #define _FREEBSD_PT_MACHINE_H   1
 
+#define HAVE___THREAD 1
+#define USE_TLS 1
+
 /*
   almost all parts are common with linux version
  */




More information about the Glibc-bsd-commits mailing list