diff options
author | Juergen Daubert <jue@jue.li> | 2006-12-08 09:29:00 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2006-12-08 09:29:00 +0100 |
commit | bb33a92bc5b26a2326d5ca2e4d13453fb07a6b7e (patch) | |
tree | e0cd68dcf6ef7a8f108e762ed6083c48037f0014 /aspell | |
parent | 28b99f66857fcd2991e063a4bdbd085708ebe7bc (diff) | |
download | opt-bb33a92bc5b26a2326d5ca2e4d13453fb07a6b7e.tar.gz opt-bb33a92bc5b26a2326d5ca2e4d13453fb07a6b7e.tar.xz |
aspell: added patch for gcc 4.1
Diffstat (limited to 'aspell')
-rw-r--r-- | aspell/.md5sum | 1 | ||||
-rw-r--r-- | aspell/Pkgfile | 4 | ||||
-rw-r--r-- | aspell/aspell-0.60.4-gcc41.patch | 12 |
3 files changed, 16 insertions, 1 deletions
diff --git a/aspell/.md5sum b/aspell/.md5sum index 42de6238e..6615f6f4b 100644 --- a/aspell/.md5sum +++ b/aspell/.md5sum @@ -1 +1,2 @@ +ef8ab9066e43922b04a40107934dacde aspell-0.60.4-gcc41.patch 4f1737e726d66476b9c7388831305510 aspell-0.60.4.tar.gz diff --git a/aspell/Pkgfile b/aspell/Pkgfile index b6931850a..bade2f56c 100644 --- a/aspell/Pkgfile +++ b/aspell/Pkgfile @@ -6,10 +6,12 @@ name=aspell version=0.60.4 release=1 -source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \ + $name-$version-gcc41.patch) build () { cd $name-$version + patch -p1 -i $SRC/$name-$version-gcc41.patch ./configure --prefix=/usr make make DESTDIR=$PKG install diff --git a/aspell/aspell-0.60.4-gcc41.patch b/aspell/aspell-0.60.4-gcc41.patch new file mode 100644 index 000000000..78e9df26c --- /dev/null +++ b/aspell/aspell-0.60.4-gcc41.patch @@ -0,0 +1,12 @@ +diff -Nru aspell-0.60.4.orig/modules/filter/nroff.cpp aspell-0.60.4/modules/filter/nroff.cpp +--- aspell-0.60.4.orig/modules/filter/nroff.cpp 2006-12-08 09:23:07.930852930 +0100 ++++ aspell-0.60.4/modules/filter/nroff.cpp 2006-12-08 09:24:17.464191930 +0100 +@@ -73,7 +73,7 @@ + return false; + } + +- bool NroffFilter::process_char (FilterChar::Chr c); ++ bool process_char (FilterChar::Chr c); + + public: + |