diffstat for hunspell_1.2.14-4 hunspell_1.2.14-4stormos0 debian/patches/20_fix_solaris_ftbfs.dpatch | 21 +++++++++++++++++++++ hunspell-1.2.14/debian/changelog | 6 ++++++ hunspell-1.2.14/debian/patches/00list | 1 + hunspell-1.2.14/debian/rules | 2 ++ 4 files changed, 30 insertions(+) diff -u hunspell-1.2.14/debian/rules hunspell-1.2.14/debian/rules --- hunspell-1.2.14/debian/rules +++ hunspell-1.2.14/debian/rules @@ -48,7 +48,9 @@ dh_testdir $(MAKE) +ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) $(MAKE) check +endif pod2man debian/ispellaff2myspell \ > debian/ispellaff2myspell.1 diff -u hunspell-1.2.14/debian/changelog hunspell-1.2.14/debian/changelog --- hunspell-1.2.14/debian/changelog +++ hunspell-1.2.14/debian/changelog @@ -1,3 +1,9 @@ +hunspell (1.2.14-4stormos0) unstable; urgency=low + + * Package for StormOS. + + -- Andrew Stormont (astormont) Fri, 08 Jul 2011 08:36:48 +0100 + hunspell (1.2.14-4) unstable; urgency=low * debian/patches/18_fix_mkallcap_calls.dpatch: also add fix another diff -u hunspell-1.2.14/debian/patches/00list hunspell-1.2.14/debian/patches/00list --- hunspell-1.2.14/debian/patches/00list +++ hunspell-1.2.14/debian/patches/00list @@ -3,2 +3,3 @@ 18_fix_mkallcap_calls +20_fix_solaris_ftbfs #99_build_stuff only in patch2: unchanged: --- hunspell-1.2.14.orig/debian/patches/20_fix_solaris_ftbfs.dpatch +++ hunspell-1.2.14/debian/patches/20_fix_solaris_ftbfs.dpatch @@ -0,0 +1,21 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 20_fix_solaris_ftbfs.dpatch by Andrew Stormont +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +--- ./src/tools/hunspell.cxx.bak 2011-07-08 08:40:23.201886633 +0100 ++++ ./src/tools/hunspell.cxx 2011-07-08 08:42:03.403812024 +0100 +@@ -483,7 +483,11 @@ + char input[INPUTLEN]; + printw(message); + echo(); ++#ifdef __sun ++ wgetnstr(stdscr, input, INPUTLEN); ++#else + getnstr(input, INPUTLEN); ++#endif + noecho(); + return mystrdup(input); + }