Hi Philippe,
Philippe Schaffnit schrieb:
Sorry, the bad old Irix thing again: I am seeing some failures under
Irix both with the preflight tar archive and updated svn sources... Can
I do anything to help?
I don't know. To be honest, the only way I could debug this would be
trial&error and naturally, I do not have an odd Irix at hand. Perhaps I
can ask the computing resources centre of my university whether they
have a machine running Irix on which I might get an account, but I doubt it.
Maybe you could try the following first guess:
--- env.c.org 2006-11-13 11:01:18.000000000 +0100
+++ env.c 2006-11-13 11:01:13.000000000 +0100
@@ -50,12 +50,12 @@
*/
static char *
__findenv(name, offset)
- register char *name;
+ register const char *name;
int *offset;
{
extern char **environ;
register int len;
- register char *np;
+ register const char *np;
register char **p, *c;
if (name == NULL || environ == NULL)
But this probably just moves the warning elsewhere.
Steffen