From f7d8abc530fc70d5ffd2c750e65576e23cbd7af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Wed, 18 Aug 2010 23:58:57 +0000 Subject: [PATCH] Mail: Always include posix/regex.h PowerPC was special-cased to not include posix/regex.h but a local copy. This caused a warning for undefining __STDC__ and a pointer signedness error. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38257 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/mail/regex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/private/mail/regex.h b/headers/private/mail/regex.h index ab9c90c8ae..32c415681d 100644 --- a/headers/private/mail/regex.h +++ b/headers/private/mail/regex.h @@ -21,7 +21,7 @@ Boston, MA 02111-1307, USA. */ /* BeOS PPC has no regex in libroot */ -#if !__POWERPC__ +#if !(defined(__BEOS__) && __POWERPC__) # include #else