diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-12-08 13:37:56 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-12-08 13:37:56 +0000 |
commit | 09e59fe62a6f61f461aa26cda4af020a883ec095 (patch) | |
tree | 2520e2bbf060b4416e027c841aa767fb9008676b /cppu | |
parent | c257a21d1e2645f6986e8d97801b2fbe78627b62 (diff) |
CWS-TOOLING: integrate CWS gcc44
2008-12-03 15:13:15 +0100 cmc r264790 : shrink patch
2008-12-03 14:26:43 +0100 cmc r264776 : shrink patch
2008-12-02 16:24:53 +0100 rene r264718 : revert, thanks sb
2008-12-02 10:47:21 +0100 rene r264675 : apply https://svn.boost.org/trac/boost/attachment/ticket/2069/0001-boost.mpl-gcc-4.4-fixes.patch for gcc 4.4 support (unbreaks at least canvas' build)
2008-12-01 22:08:16 +0100 rene r264643 : missing include (already needed for gcc 4.3)
2008-12-01 22:07:07 +0100 rene r264642 : allow gcc 4.4
2008-12-01 22:06:34 +0100 rene r264641 : fix conditional so that it builds with gcc 4.4 (patch from http://bugs.debian.org/505371)
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/inc/uno/lbnames.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppu/inc/uno/lbnames.h b/cppu/inc/uno/lbnames.h index 3b2b7aa1b..f187e5dc2 100644 --- a/cppu/inc/uno/lbnames.h +++ b/cppu/inc/uno/lbnames.h @@ -65,12 +65,12 @@ provoking error here, because PP ignores #error #error "Tested gcc 2 versions are 2.91 and 2.95. Patch uno/lbnames.h to try your gcc 2 version." #elif (__GNUC__ == 3 && __GNUC_MINOR__ <= 4) #define __CPPU_ENV gcc3 -#elif (__GNUC__ == 4 && __GNUC_MINOR__ <= 3) +#elif (__GNUC__ == 4 && __GNUC_MINOR__ <= 4) #define __CPPU_ENV gcc3 #elif (__GNUC__ == 3) #error "Tested gcc 3 version is <= 3.4. Patch uno/lbnames.h to try your gcc 3 version." #else -#error "Supported gcc majors are 2 , 3 and 4 <= 4.3. Unsupported gcc major version." +#error "Supported gcc majors are 2 , 3 and 4 <= 4.4. Unsupported gcc major version." #endif /* defined (__GNUC__) */ #endif /* defined (_MSC_VER) */ |