correction - use screenwidth/screenheight
[AROS-Contrib.git] / gnu / indent / indent-2.2.9-aros.diff
blob5aa57ed9756859155c0de91f01b55e1ec2a7a310
1 diff -urN indent-2.2.9/config/config.sub indent-2.2.9-aros/config/config.sub
2 --- indent-2.2.9/config/config.sub 2002-09-09 18:09:16.000000000 +0200
3 +++ indent-2.2.9-aros/config/config.sub 2004-08-27 15:25:31.000000000 +0200
4 @@ -1211,6 +1211,9 @@
5 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
6 os=-mint
7 ;;
8 + -aros)
9 + os=-aros
10 + ;;
11 -none)
14 diff -urN indent-2.2.9/man/texinfo2man.c indent-2.2.9-aros/man/texinfo2man.c
15 --- indent-2.2.9/man/texinfo2man.c 2002-01-17 20:28:51.000000000 +0100
16 +++ indent-2.2.9-aros/man/texinfo2man.c 2004-08-27 15:25:31.000000000 +0200
17 @@ -1,5 +1,7 @@
18 #include <stdio.h>
19 +#ifndef __AROS__
20 #include <malloc.h>
21 +#endif
22 #include <string.h>
23 #include <ctype.h>
25 diff -urN indent-2.2.9/Makefile.am indent-2.2.9-aros/Makefile.am
26 --- indent-2.2.9/Makefile.am 2002-12-17 18:31:41.000000000 +0100
27 +++ indent-2.2.9-aros/Makefile.am 2004-09-02 11:38:48.000000000 +0200
28 @@ -1,7 +1,8 @@
29 ## Process this file with automake to produce Makefile.in
30 AUTOMAKE_OPTIONS = no-texinfo.tex
32 -SUBDIRS = intl m4 src doc po man
33 +SUBDIRS = intl m4 src doc po
34 +# man
36 BUILT_SOURCES =
38 diff -urN indent-2.2.9/Makefile.in indent-2.2.9-aros/Makefile.in
39 --- indent-2.2.9/Makefile.in 2002-12-17 18:31:41.000000000 +0100
40 +++ indent-2.2.9-aros/Makefile.in 2004-09-02 11:38:38.000000000 +0200
41 @@ -107,7 +107,8 @@
42 localedir = @localedir@
43 AUTOMAKE_OPTIONS = no-texinfo.tex
45 -SUBDIRS = intl m4 src doc po man
46 +SUBDIRS = intl m4 src doc po
47 +# man
49 BUILT_SOURCES =
51 diff -urN indent-2.2.9/src/indent.h indent-2.2.9-aros/src/indent.h
52 --- indent-2.2.9/src/indent.h 2007-05-03 21:14:33.000000000 +0200
53 +++ indent-2.2.9-aros/src/indent.h 2007-05-03 21:12:39.000000000 +0200
54 @@ -97,7 +97,7 @@
55 extern unsigned long in_prog_size;
57 /* The output file. */
58 -extern FILE *output;
59 +/* extern FILE *output; */