I had to edit src/dired.c to get rid of compiler errors. Do
`user_cache' variables have to be initialized at the end of the file??
Remek
cc -c -O2 -n32 -mips4 -w -OPT:Olimit=3300 -Demacs -I. -DHAVE_CONFIG_H
-I/usr/people/remek/include -I/usr/npac/include -xansi dired.c
"dired.c", line 940: error(1143): declaration is incompatible with
"char **user_cache" (declared at line 588)
user_cache = NULL;
^
1 error detected in the compilation of "dired.c".
make[1]: *** [dired.o] Error 2
--- src/dired.c.old Wed Aug 19 12:11:35 1998
+++ src/dired.c Wed Aug 19 12:13:17 1998
@@ -585,9 +585,9 @@
return Qnil;
}
-static char **user_cache;
-static int user_cache_len;
-static int user_cache_max;
+static char **user_cache = NULL;
+static int user_cache_len = 0;
+static int user_cache_max = 0;
static long user_cache_time;
#define USER_CACHE_REBUILD (24*60*60) /* 1 day, in seconds */
@@ -937,6 +937,3 @@
Vcompletion_ignored_extensions = Qnil;
}
- user_cache = NULL;
- user_cache_len = 0;
- user_cache_max = 0;
XEmacs Build Report as generated
by build-report-version 1.35 follows:
Contents of /home/R11A/remek/local/src/xemacs-21.2/Installation:
(Output from most recent run of ./configure)