]> sourceware.org Git - glibc.git/commitdiff
Remove whitespace from last change cvs/fedora-glibc-20041124T0741
authorAndreas Jaeger <aj@suse.de>
Wed, 24 Nov 2004 04:43:30 +0000 (04:43 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 24 Nov 2004 04:43:30 +0000 (04:43 +0000)
* sysdeps/mips/sgidefs.h: Prevent <asm/sgidefs.h> from being
included by kernel headers and undo its settings if already
included.  Define _ABIO32, _ABIN32 and _ABI64 if missing and use
them to define _MIPS_SIM_ABI32, _MIPS_SIM_NABI32 and

ChangeLog
sysdeps/unix/sysv/linux/mips/configure

index da423f36180aab0bc2ce2371d704f3e59f885693..00e7fda6843dd474ce9b40c6871fa5c9141a89c2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
        * sysdeps/unix/sysv/linux/mips/sys/tas.h: Likewise.
        * sysdeps/unix/sysv/linux/mips/sys/user.h: Likewise.
 
-       * sysdeps/mips/sgidefs.h: Prevent <asm/sgidefs.h> from being 
-       included by kernel headers and undo its settings if already 
-       included.  Define _ABIO32, _ABIN32 and _ABI64 if missing and use 
-       them to define _MIPS_SIM_ABI32, _MIPS_SIM_NABI32 and 
+       * sysdeps/mips/sgidefs.h: Prevent <asm/sgidefs.h> from being
+       included by kernel headers and undo its settings if already
+       included.  Define _ABIO32, _ABIN32 and _ABI64 if missing and use
+       them to define _MIPS_SIM_ABI32, _MIPS_SIM_NABI32 and
        _MIPS_SIM_ABI64 for compatibility.
        * sysdeps/unix/sysv/linux/mips/Makefile: Use _ABIO32, _ABIN32 and
        _ABI64 for ABI selection in generated syscall-list.h
index 8ee636fb99ff4623f5fbd9bc6160b394e1240446..c081795aa1d5ff1a12cd49ec0be3ea3b09d7ad06 100755 (executable)
@@ -42,7 +42,7 @@ BEGIN { print "#include <sgidefs.h>"; }
        name = $2;
        sub (/_O32_/, "_", name);
        print;
-       print "#if _MIPS_SIM == _MIPS_SIM_ABI32";
+       print "#if _MIPS_SIM == _ABIO32";
        print "# define " name " " $2;
        print "#endif";
        next;
@@ -51,7 +51,7 @@ BEGIN { print "#include <sgidefs.h>"; }
        name = $2;
        sub (/_N32_/, "_", name);
        print;
-       print "#if _MIPS_SIM == _MIPS_SIM_NABI32";
+       print "#if _MIPS_SIM == _ABIN32";
        print "# define " name " " $2;
        print "#endif";
        next;
@@ -60,7 +60,7 @@ BEGIN { print "#include <sgidefs.h>"; }
        name = $2;
        sub (/_N64_/, "_", name);
        print;
-       print "#if _MIPS_SIM == _MIPS_SIM_ABI64";
+       print "#if _MIPS_SIM == _ABI64";
        print "# define " name " " $2;
        print "#endif";
        next;
This page took 0.052927 seconds and 5 git commands to generate.