diff options
author | Andreas Jaeger <aj@suse.de> | 2004-11-24 04:43:30 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2004-11-24 04:43:30 +0000 |
commit | 6f50c607232b05e5bc2b0e91708302413d222e42 (patch) | |
tree | 12c91669b357a2df7951273859ca264834959a90 /sysdeps/unix/sysv/linux | |
parent | c997e9d40ec0f2f9c61a2325efb5b73b92cc91c1 (diff) | |
download | glibc-6f50c607232b05e5bc2b0e91708302413d222e42.tar.gz |
Remove whitespace from last changecvs/fedora-glibc-20041124T0741
* 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
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rwxr-xr-x | sysdeps/unix/sysv/linux/mips/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/configure b/sysdeps/unix/sysv/linux/mips/configure index 8ee636fb99..c081795aa1 100755 --- a/sysdeps/unix/sysv/linux/mips/configure +++ b/sysdeps/unix/sysv/linux/mips/configure @@ -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; |