--- oo_1.0.1_src/cppu/source/uno/data.cxx.bak 2002-10-16 09:15:14.000000000 +0200 +++ oo_1.0.1_src/cppu/source/uno/data.cxx 2002-10-16 09:15:38.000000000 +0200 @@ -307,7 +307,7 @@ if (OFFSET_OF(s, m) != n) { fprintf( stderr, "### OFFSET_OF(" #s ", " #m ") = %d instead of expected %d!!!\n", OFFSET_OF(s, m), n ); abort(); } #ifdef DEBUG -#if defined(__GNUC__) && defined(LINUX) && (defined(INTEL) || defined(POWERPC)) +#if defined(__GNUC__) && defined(LINUX) #define BINTEST_VERIFYSIZE( s, n ) \ fprintf( stderr, "> sizeof(" #s ") = %d; __alignof__ (" #s ") = %d\n", sizeof(s), __alignof__ (s) ); \ if (sizeof(s) != n) { fprintf( stderr, "### sizeof(" #s ") = %d instead of expected %d!!!\n", sizeof(s), n ); abort(); } --- oo_1.0.1_src/cppu/inc/cppu/macros.hxx.bak 2002-10-16 09:12:26.000000000 +0200 +++ oo_1.0.1_src/cppu/inc/cppu/macros.hxx 2002-10-16 09:13:04.000000000 +0200 @@ -76,7 +76,7 @@ the struct inherits from a base struct the first member is no double or [unsigned] long long. @internal */ -#if defined(__GNUC__) && defined(LINUX) && (defined(INTEL) || defined(POWERPC)) && (__GNUC__ == 3) +#if defined(__GNUC__) && defined(LINUX) && (__GNUC__ == 3) #define CPPU_GCC3_ALIGN( base_struct ) __attribute__ ((aligned (__alignof__ (base_struct)))) #else #define CPPU_GCC3_ALIGN( base_struct )