diff options
author | Petr Mladek <pmladek@suse.cz> | 2010-09-17 12:18:37 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-09-17 12:18:37 +0200 |
commit | 6635abfeb11e957218029052b2faa947c78d3c67 (patch) | |
tree | 4f708cd36160871deeca96b450ce984bc4bca362 /cppu/inc | |
parent | 647d21748c7fb5bfd45d10fdba167c4222a1f81e (diff) |
cppu-lbnames-enable-gcc-4.5.diff: enable build with gcc-4.5
i#109853
Diffstat (limited to 'cppu/inc')
-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 da12caa1e276..2cf671e599f2 100644 --- a/cppu/inc/uno/lbnames.h +++ b/cppu/inc/uno/lbnames.h @@ -59,12 +59,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__ <= 4) +#elif (__GNUC__ == 4 && __GNUC_MINOR__ <= 5) #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.4. Unsupported gcc major version." +#error "Supported gcc majors are 2 , 3 and 4 <= 4.5. Unsupported gcc major version." #endif /* defined (__GNUC__) */ #endif /* defined (_MSC_VER) */ |