From 0a7531ac0de4fa12856cb4eb0170982d16ac97fb Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Sat, 28 Jun 2008 18:30:16 +0000 Subject: [PATCH] We don't have a "working strerror_r" as far as grep configuration is concerned. Grep declares it "working" when strerror_r returns a string, while POSIX says it should return int (as we do). Don't know where this config define came from, as we do not have any headers advertizing it wrongly. This fixes bug #2450. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26156 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/grep/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/grep/config.h b/src/bin/grep/config.h index 9f5d39056e..c4b18ae2b8 100644 --- a/src/bin/grep/config.h +++ b/src/bin/grep/config.h @@ -247,7 +247,7 @@ /* #undef HAVE_WCTYPE_H */ /* Define to 1 if strerror_r returns a string. */ -#define HAVE_WORKING_STRERROR_R 1 +/* #undef HAVE_WORKING_STRERROR_R */ /* Define to 1 if you have the `__argz_count' function. */ /* #undef HAVE___ARGZ_COUNT */