From: Garrett C. <ris...@li...> - 2010-06-20 12:17:26
|
The branch, pu, has been updated via b90b372e4a1e06c7a1e08ca0e2f291b543592faf (commit) from 336190574a34bd7327c67635725f09b2457b32d0 (commit) - Log ----------------------------------------------------------------- commit b90b372e4a1e06c7a1e08ca0e2f291b543592faf Author: Garrett Cooper <yan...@gm...> Date: Sun Jun 20 05:15:36 2010 -0700 Revert _BSD_SOURCE vs _GNU_SOURCE check. The _GNU_SOURCE guard in ctypes enables the kitchen sink as far as standards are concerned, which enables _BSD_SOURCE. So let's note the real culprit for non-compliance. Signed-off-by: Garrett Cooper <yan...@gm...> ----------------------------------------------------------------------- Summary of changes: testcases/open_posix_testsuite/include/posixtest.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/testcases/open_posix_testsuite/include/posixtest.h b/testcases/open_posix_testsuite/include/posixtest.h index c71e037..f22a1e7 100644 --- a/testcases/open_posix_testsuite/include/posixtest.h +++ b/testcases/open_posix_testsuite/include/posixtest.h @@ -10,10 +10,10 @@ * return codes */ -#if defined(_BSD_SOURCE) -#error "Contains BSD-isms that need fixing." -#elif defined(_GNU_SOURCE) +#if defined(_GNU_SOURCE) #error "Contains GNU-isms that need fixing." +#elif defined(_BSD_SOURCE) +#error "Contains BSD-isms that need fixing." #endif #define PTS_PASS 0 hooks/post-receive -- ltp |