Error in configure of aspell6-en-6.0-0.tar.bz2
Dmitri Tikhonov <[email protected]>
| Newsgroups | gmane.comp.gnu.aspell.devel |
|---|---|
| Message-ID | <[email protected]> |
Dear list, aspell6-en-6.0-0.tar.bz2's configure file --help option says that ASPELL_PARMS is a useful option; it isn't -- ASPELL_FLAGS is used instead to create Makefile. Attached patch fixes the help message. - Dmitri. _______________________________________________ Aspell-devel mailing list [email protected] http://lists.gnu.org/mailman/listinfo/aspell-devel
aspell.xs.patch.txt
(text/plain, 592 B)
--- Aspell.xs.orig 2006-07-03 14:46:24.000000000 -0400
+++ Aspell.xs 2006-07-03 14:46:29.000000000 -0400
@@ -54,7 +54,7 @@
new(CLASS)
char *CLASS
CODE:
- RETVAL = (Aspell_object*)safemalloc( sizeof( Aspell_object ) );
+ RETVAL = (Aspell_object*)malloc( sizeof( Aspell_object ) );
if( RETVAL == NULL ){
warn("unable to malloc Aspell_object");
XSRETURN_UNDEF;
@@ -80,7 +80,7 @@
if ( self->speller )
delete_aspell_speller(self->speller);
- safefree( (char*)self );
+ free( (char*)self );
int