On 31/07/04, 18:22:52, Kevin Atkinson <[EMAIL PROTECTED]> wrote 
regarding [aspell-devel] GNU Aspell 0.60-pre2 Now Available:

> The second official pre-release of GNU Aspell 0.60 is now available at:
...
>   * Portability fixes for Sun C++ compiler.

Thank you for those changes.  There is a slight problem with the 
__attribute__, when the conditional part is not included there is no 
semicolon on the structures:


--- ./common/convert.cpp.orig   2004-07-24 07:57:20.000000000 -0400
+++ ./common/convert.cpp        2004-08-03 06:06:34.083610000 -0400
@@ -257,9 +257,9 @@
     void * sub_table;
   } 
 #ifdef __GNUC__    
-    __attribute__ ((aligned (16)));
+    __attribute__ ((aligned (16)))
 #endif
-
+;
   struct ToUniNormEntry
   {
     typedef byte From;
@@ -272,8 +272,9 @@
     void * sub_table;
   } 
 #ifdef __GNUC__    
-    __attribute__ ((aligned (16)));
+    __attribute__ ((aligned (16)))
 #endif
+;
   
   //////////////////////////////////////////////////////////////////////
   //




James.




_______________________________________________
Aspell-devel mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/aspell-devel

Reply via email to