You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.7 KiB
117 lines
3.7 KiB
Index: Makefile.in |
|
--- Makefile.in.orig 2011-07-04 10:58:49.000000000 +0200 |
|
+++ Makefile.in 2017-09-01 12:40:24.483635000 +0200 |
|
@@ -482,7 +482,7 @@ |
|
top_srcdir = @top_srcdir@ |
|
AUTOMAKE_OPTIONS = foreign subdir-objects |
|
SUBDIRS = . po manual |
|
-DIST_SUBDIRS = ${SUBDIRS} examples myspell lib5 |
|
+DIST_SUBDIRS = ${SUBDIRS} myspell lib5 |
|
filterdir = ${pkglibdir} |
|
optdir = ${pkgdatadir} |
|
|
|
Index: aspell6-de-20030222-1/configure |
|
--- aspell6-de-20030222-1/configure.orig 2004-11-04 03:46:10.000000000 +0100 |
|
+++ aspell6-de-20030222-1/configure 2017-09-01 12:40:24.483774000 +0200 |
|
@@ -66,9 +66,9 @@ |
|
|
|
#echo $ASPELL |
|
if test x = "x$ASPELL" |
|
- then ASPELL=aspell; fi |
|
+ then ASPELL=`which aspell`; fi |
|
if test x = "x$PREZIP" |
|
- then PREZIP=prezip-bin; fi |
|
+ then PREZIP=`which prezip-bin`; fi |
|
#echo $ASPELL |
|
|
|
echo $ECHO_N "Finding Dictionary file location ... $ECHO_C" |
|
@@ -79,9 +79,9 @@ |
|
datadir=`$ASPELL dump config data-dir` |
|
echo $datadir |
|
|
|
-echo "ASPELL = `which $ASPELL`" > Makefile |
|
+echo "ASPELL = $ASPELL" > Makefile |
|
echo "ASPELL_FLAGS = $ASPELL_FLAGS" >> Makefile |
|
-echo "PREZIP = `which $PREZIP`" >> Makefile |
|
+echo "PREZIP = $PREZIP" >> Makefile |
|
echo "DESTDIR = $DESTDIR" >> Makefile |
|
echo "dictdir = $dictdir" >> Makefile |
|
echo "datadir = $datadir" >> Makefile |
|
Index: aspell6-de-alt-2.1-1/configure |
|
--- aspell6-de-alt-2.1-1/configure.orig 2004-11-04 03:48:55.000000000 +0100 |
|
+++ aspell6-de-alt-2.1-1/configure 2017-09-01 12:40:24.483890000 +0200 |
|
@@ -66,9 +66,9 @@ |
|
|
|
#echo $ASPELL |
|
if test x = "x$ASPELL" |
|
- then ASPELL=aspell; fi |
|
+ then ASPELL=`which aspell`; fi |
|
if test x = "x$PREZIP" |
|
- then PREZIP=prezip-bin; fi |
|
+ then PREZIP=`which prezip-bin`; fi |
|
#echo $ASPELL |
|
|
|
echo $ECHO_N "Finding Dictionary file location ... $ECHO_C" |
|
@@ -79,9 +79,9 @@ |
|
datadir=`$ASPELL dump config data-dir` |
|
echo $datadir |
|
|
|
-echo "ASPELL = `which $ASPELL`" > Makefile |
|
+echo "ASPELL = $ASPELL" > Makefile |
|
echo "ASPELL_FLAGS = $ASPELL_FLAGS" >> Makefile |
|
-echo "PREZIP = `which $PREZIP`" >> Makefile |
|
+echo "PREZIP = $PREZIP" >> Makefile |
|
echo "DESTDIR = $DESTDIR" >> Makefile |
|
echo "dictdir = $dictdir" >> Makefile |
|
echo "datadir = $datadir" >> Makefile |
|
Index: aspell6-en-2018.04.16-0/configure |
|
--- aspell6-en-2018.04.16-0/configure.orig 2017-08-24 20:39:19.000000000 +0200 |
|
+++ aspell6-en-2018.04.16-0/configure 2017-09-01 12:40:24.484006000 +0200 |
|
@@ -66,9 +66,9 @@ |
|
|
|
#echo $ASPELL |
|
if test x = "x$ASPELL" |
|
- then ASPELL=aspell; fi |
|
+ then ASPELL=`which aspell`; fi |
|
if test x = "x$PREZIP" |
|
- then PREZIP=prezip-bin; fi |
|
+ then PREZIP=`which prezip-bin`; fi |
|
#echo $ASPELL |
|
|
|
echo $ECHO_N "Finding Dictionary file location ... $ECHO_C" |
|
@@ -79,9 +79,9 @@ |
|
datadir=`$ASPELL dump config data-dir` |
|
echo $datadir |
|
|
|
-echo "ASPELL = `which $ASPELL`" > Makefile |
|
+echo "ASPELL = $ASPELL" > Makefile |
|
echo "ASPELL_FLAGS = $ASPELL_FLAGS" >> Makefile |
|
-echo "PREZIP = `which $PREZIP`" >> Makefile |
|
+echo "PREZIP = $PREZIP" >> Makefile |
|
echo "DESTDIR = $DESTDIR" >> Makefile |
|
echo "dictdir = $dictdir" >> Makefile |
|
echo "datadir = $datadir" >> Makefile |
|
Index: modules/filter/tex.cpp |
|
--- modules/filter/tex.cpp.orig 2011-07-02 23:09:09.000000000 +0200 |
|
+++ modules/filter/tex.cpp 2017-09-01 12:40:45.762168000 +0200 |
|
@@ -174,7 +174,7 @@ |
|
|
|
if (c == '{') { |
|
|
|
- if (top.in_what == Parm || top.in_what == Opt || top.do_check == '\0') |
|
+ if (top.in_what == Parm || top.in_what == Opt || *top.do_check == '\0') |
|
push_command(Parm); |
|
|
|
top.in_what = Parm; |
|
Index: prog/check_funs.cpp |
|
--- prog/check_funs.cpp.orig 2011-07-04 11:17:27.000000000 +0200 |
|
+++ prog/check_funs.cpp 2017-09-01 12:40:57.799208000 +0200 |
|
@@ -647,7 +647,7 @@ |
|
} |
|
} |
|
if (i == width-1) { |
|
- if (word == '\0') |
|
+ if (*word == '\0') |
|
put(out,' '); |
|
else if (word[len] == '\0') |
|
put(out, word, len);
|
|
|