mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-08 18:30:18 +00:00
* posix/confstr.c: Enclose #error message with double quote
for gcc-3.3 and lower.
This commit is contained in:
parent
2810cccac6
commit
9e68d85af4
@ -1,3 +1,8 @@
|
||||
2004-11-30 GOTO Masanori <gotom@debian.or.jp>
|
||||
|
||||
* posix/confstr.c: Enclose #error message with double quote
|
||||
for gcc-3.3 and lower.
|
||||
|
||||
2004-12-04 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/i386/clone.S: Add support for NPTL where
|
||||
|
@ -113,7 +113,7 @@ confstr (name, buf, len)
|
||||
case _CS_POSIX_V6_ILP32_OFF32_CFLAGS:
|
||||
#ifdef __ILP32_OFF32_CFLAGS
|
||||
# if _POSIX_V6_ILP32_OFF32 == -1
|
||||
# error __ILP32_OFF32_CFLAGS should not be defined
|
||||
# error "__ILP32_OFF32_CFLAGS should not be defined"
|
||||
# elif !defined _POSIX_V6_ILP32_OFF32
|
||||
if (__sysconf (_SC_V6_ILP32_OFF32) < 0)
|
||||
break;
|
||||
@ -127,7 +127,7 @@ confstr (name, buf, len)
|
||||
case _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS:
|
||||
#ifdef __ILP32_OFFBIG_CFLAGS
|
||||
# if _POSIX_V6_ILP32_OFFBIG == -1
|
||||
# error __ILP32_OFFBIG_CFLAGS should not be defined
|
||||
# error "__ILP32_OFFBIG_CFLAGS should not be defined"
|
||||
# elif !defined _POSIX_V6_ILP32_OFFBIG
|
||||
if (__sysconf (_SC_V6_ILP32_OFFBIG) < 0)
|
||||
break;
|
||||
@ -141,7 +141,7 @@ confstr (name, buf, len)
|
||||
case _CS_POSIX_V6_LP64_OFF64_CFLAGS:
|
||||
#ifdef __LP64_OFF64_CFLAGS
|
||||
# if _POSIX_V6_LP64_OFF64 == -1
|
||||
# error __LP64_OFF64_CFLAGS should not be defined
|
||||
# error "__LP64_OFF64_CFLAGS should not be defined"
|
||||
# elif !defined _POSIX_V6_LP64_OFF64
|
||||
if (__sysconf (_SC_V6_LP64_OFF64) < 0)
|
||||
break;
|
||||
@ -155,7 +155,7 @@ confstr (name, buf, len)
|
||||
case _CS_POSIX_V6_ILP32_OFF32_LDFLAGS:
|
||||
#ifdef __ILP32_OFF32_LDFLAGS
|
||||
# if _POSIX_V6_ILP32_OFF32 == -1
|
||||
# error __ILP32_OFF32_LDFLAGS should not be defined
|
||||
# error "__ILP32_OFF32_LDFLAGS should not be defined"
|
||||
# elif !defined _POSIX_V6_ILP32_OFF32
|
||||
if (__sysconf (_SC_V6_ILP32_OFF32) < 0)
|
||||
break;
|
||||
@ -169,7 +169,7 @@ confstr (name, buf, len)
|
||||
case _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS:
|
||||
#ifdef __ILP32_OFFBIG_LDFLAGS
|
||||
# if _POSIX_V6_ILP32_OFFBIG == -1
|
||||
# error __ILP32_OFFBIG_LDFLAGS should not be defined
|
||||
# error "__ILP32_OFFBIG_LDFLAGS should not be defined"
|
||||
# elif !defined _POSIX_V6_ILP32_OFFBIG
|
||||
if (__sysconf (_SC_V6_ILP32_OFFBIG) < 0)
|
||||
break;
|
||||
@ -183,7 +183,7 @@ confstr (name, buf, len)
|
||||
case _CS_POSIX_V6_LP64_OFF64_LDFLAGS:
|
||||
#ifdef __LP64_OFF64_LDFLAGS
|
||||
# if _POSIX_V6_LP64_OFF64 == -1
|
||||
# error __LP64_OFF64_LDFLAGS should not be defined
|
||||
# error "__LP64_OFF64_LDFLAGS should not be defined"
|
||||
# elif !defined _POSIX_V6_LP64_OFF64
|
||||
if (__sysconf (_SC_V6_LP64_OFF64) < 0)
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user