[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r13219 - in /fsf/trunk/ports: ./ sysdeps/arm/eabi/ sysdeps/arm/eabi/bits/ sysdeps/unix/sysv/linux/arm/ sysdeps/unix/sysv/lin...



Author: eglibc
Date: Mon Mar 21 08:54:08 2011
New Revision: 13219

Log:
Import glibc-ports-mainline for 2011-03-21

Modified:
    fsf/trunk/ports/ChangeLog.arm
    fsf/trunk/ports/sysdeps/arm/eabi/__longjmp.S
    fsf/trunk/ports/sysdeps/arm/eabi/bits/fenv.h
    fsf/trunk/ports/sysdeps/arm/eabi/fclrexcpt.c
    fsf/trunk/ports/sysdeps/arm/eabi/fedisblxcpt.c
    fsf/trunk/ports/sysdeps/arm/eabi/feenablxcpt.c
    fsf/trunk/ports/sysdeps/arm/eabi/fegetenv.c
    fsf/trunk/ports/sysdeps/arm/eabi/fegetexcept.c
    fsf/trunk/ports/sysdeps/arm/eabi/fegetround.c
    fsf/trunk/ports/sysdeps/arm/eabi/feholdexcpt.c
    fsf/trunk/ports/sysdeps/arm/eabi/fesetenv.c
    fsf/trunk/ports/sysdeps/arm/eabi/fesetround.c
    fsf/trunk/ports/sysdeps/arm/eabi/fpu_control.h
    fsf/trunk/ports/sysdeps/arm/eabi/fraiseexcpt.c
    fsf/trunk/ports/sysdeps/arm/eabi/fsetexcptflg.c
    fsf/trunk/ports/sysdeps/arm/eabi/ftestexcept.c
    fsf/trunk/ports/sysdeps/arm/eabi/setjmp.S
    fsf/trunk/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S
    fsf/trunk/ports/sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S

Modified: fsf/trunk/ports/ChangeLog.arm
==============================================================================
--- fsf/trunk/ports/ChangeLog.arm (original)
+++ fsf/trunk/ports/ChangeLog.arm Mon Mar 21 08:54:08 2011
@@ -1,3 +1,17 @@
+2011-03-21  Joseph Myers  <joseph@xxxxxxxxxxxxxxxx>
+
+	* sysdeps/arm/eabi/__longjmp.S, sysdeps/arm/eabi/bits/fenv.h,
+	sysdeps/arm/eabi/fclrexcpt.c, sysdeps/arm/eabi/fedisblxcpt.c,
+	sysdeps/arm/eabi/feenablxcpt.c, sysdeps/arm/eabi/fegetenv.c,
+	sysdeps/arm/eabi/fegetexcept.c, sysdeps/arm/eabi/fegetround.c,
+	sysdeps/arm/eabi/feholdexcpt.c, sysdeps/arm/eabi/fesetenv.c,
+	sysdeps/arm/eabi/fesetround.c, sysdeps/arm/eabi/fpu_control.h,
+	sysdeps/arm/eabi/fraiseexcpt.c, sysdeps/arm/eabi/fsetexcptflg.c,
+	sysdeps/arm/eabi/ftestexcept.c, sysdeps/arm/eabi/setjmp.S,
+	sysdeps/unix/sysv/linux/arm/____longjmp_chk.S,
+	sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S: Correct
+	license reference in last paragraph of license notice.
+
 2011-03-05  Nathan Sidwell  <nathan@xxxxxxxxxxxxxxxx>
 	    Glauber de Oliveira Costa  <glommer@xxxxxxxxx>
 

Modified: fsf/trunk/ports/sysdeps/arm/eabi/__longjmp.S
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/__longjmp.S (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/__longjmp.S Mon Mar 21 08:54:08 2011
@@ -13,10 +13,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <sysdep.h>
 #define _SETJMP_H

Modified: fsf/trunk/ports/sysdeps/arm/eabi/bits/fenv.h
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/bits/fenv.h (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/bits/fenv.h Mon Mar 21 08:54:08 2011
@@ -11,10 +11,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #ifndef _FENV_H
 # error "Never use <bits/fenv.h> directly; include <fenv.h> instead."

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fclrexcpt.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fclrexcpt.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fclrexcpt.c Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fedisblxcpt.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fedisblxcpt.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fedisblxcpt.c Mon Mar 21 08:54:08 2011
@@ -13,10 +13,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/feenablxcpt.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/feenablxcpt.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/feenablxcpt.c Mon Mar 21 08:54:08 2011
@@ -13,10 +13,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fegetenv.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fegetenv.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fegetenv.c Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fegetexcept.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fegetexcept.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fegetexcept.c Mon Mar 21 08:54:08 2011
@@ -13,10 +13,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fegetround.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fegetround.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fegetround.c Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/feholdexcpt.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/feholdexcpt.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/feholdexcpt.c Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fesetenv.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fesetenv.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fesetenv.c Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fesetround.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fesetround.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fesetround.c Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fpu_control.h
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fpu_control.h (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fpu_control.h Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #ifndef _FPU_CONTROL_H
 #define _FPU_CONTROL_H

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fraiseexcpt.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fraiseexcpt.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fraiseexcpt.c Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fpu_control.h>
 #include <fenv.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/fsetexcptflg.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/fsetexcptflg.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/fsetexcptflg.c Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <math.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/ftestexcept.c
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/ftestexcept.c (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/ftestexcept.c Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <fenv.h>
 #include <fpu_control.h>

Modified: fsf/trunk/ports/sysdeps/arm/eabi/setjmp.S
==============================================================================
--- fsf/trunk/ports/sysdeps/arm/eabi/setjmp.S (original)
+++ fsf/trunk/ports/sysdeps/arm/eabi/setjmp.S Mon Mar 21 08:54:08 2011
@@ -12,10 +12,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <sysdep.h>
 #define _SETJMP_H

Modified: fsf/trunk/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S
==============================================================================
--- fsf/trunk/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S (original)
+++ fsf/trunk/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S Mon Mar 21 08:54:08 2011
@@ -11,10 +11,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <sysdep.h>
 

Modified: fsf/trunk/ports/sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S
==============================================================================
--- fsf/trunk/ports/sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S (original)
+++ fsf/trunk/ports/sysdeps/unix/sysv/linux/arm/eabi/____longjmp_chk.S Mon Mar 21 08:54:08 2011
@@ -11,10 +11,10 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
 
-   You should have received a copy of the GNU General Public License
-   along with GCC; see the file COPYING.  If not, write to the Free
-   Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
 
 #include <sysdep.h>