-$Id: CHANGES,v 1.14 1999/11/07 18:53:33 tiniou Exp $
+$Id: CHANGES,v 1.15 1999/11/11 16:13:57 tiniou Exp $
Changes between versions 0.4b9 and 0.4b10 (released ???????????????)
====================================================================
1. Make configure test if the system glob routines support
extended syntax (ALTDIRFUNC). If not, use the internal glob
- routines instead of system ones.
+ routines instead of system ones. Thanks to Bernhard Sadlowski
+ <sadlowsk@Mathematik.Uni-Bielefeld.DE> for reporting the bug
+ and helping me resolve this and other minor libc5 compiling
+ glitches.
Changes between versions 0.4b8 and 0.4b9 (released November 5, 1999)
====================================================================
-$Id: THANKS,v 1.7 1999/10/22 18:12:26 tiniou Exp $
+$Id: THANKS,v 1.8 1999/11/11 16:13:57 tiniou Exp $
Dump and restore were written by the people of the CSRG at the University
of California, Berkeley.
suggested various improvements.
Here is a partial list of them (if I have forgotten someone, please complain):
+Stephen Carr sgcarr@civeng.adelaide.edu.au
Abhijit Dasgupta abhijit@ans.net
Eirik Fuller eirik@netcom.com
Henry Katz hkatz@hkatz.dialup.access.net
Lukas Nellen L.Nellen@ThPhys.Uni-Heidelberg.DE
Nuno Oliveira nuno@eq.uc.pt
Brent Olson night@halcyon.com
+Bernhard Sadlowski sadlowsk@Mathematik.Uni-Bielefeld.DE
+Chris Siebenmann cks@utcc.utoronto.ca
Bob Snyder rsnyder@janet.advsys.com
Stephen Tweedie sct@dcs.ed.ac.uk
Daniel Veillard Daniel.Veillard@imag.fr
* Remy Card <card@Linux.EU.Org>, 1994-1997
* Stelian Pop <pop@cybercable.fr>, 1999
*
- * $Id: compaterr.h,v 1.4 1999/10/13 09:57:18 stelian Exp $
+ * $Id: compaterr.h,v 1.5 1999/11/11 16:14:01 tiniou Exp $
*/
/*-
* SUCH DAMAGE.
*/
-#ifndef _ERR_H_
-#define _ERR_H_
+#ifndef _COMPATERR_H_
+#define _COMPATERR_H_
#include <config.h>
#endif
__END_DECLS
-#endif /* !_ERR_H_ */
+#endif /* !_COMPATERR_H_ */
* Remy Card <card@Linux.EU.Org>, 1994-1997
* Stelian Pop <pop@cybercable.fr>, 1999
*
- * $Id: compatglob.h,v 1.3 1999/10/13 09:57:18 stelian Exp $
+ * $Id: compatglob.h,v 1.4 1999/11/11 16:14:01 tiniou Exp $
*/
/*
* SUCH DAMAGE.
*/
-#ifndef _GLOB_H_
-#define _GLOB_H_
+#ifndef _COMPATGLOB_H_
+#define _COMPATGLOB_H_
#include <config.h>
void globfree __P((glob_t *));
__END_DECLS
-#endif /* !_GLOB_H_ */
-
#endif /* HAVE_GLOB */
+
+#endif /* !_COMPATGLOB_H_ */
#ifndef lint
static const char rcsid[] =
- "$Id: tape.c,v 1.7 1999/11/05 22:02:19 tiniou Exp $";
+ "$Id: tape.c,v 1.8 1999/11/11 16:14:01 tiniou Exp $";
#endif /* not lint */
#include <sys/param.h>
return (genliteraldir(name, curfile.ino));
case IFLNK:
- { uid_t luid = curfile.dip->di_uid;
+ {
+#ifdef HAVE_LCHOWN
+ uid_t luid = curfile.dip->di_uid;
gid_t lgid = curfile.dip->di_gid;
-
+#endif
lnkbuf[0] = '\0';
pathlen = 0;
getfile(xtrlnkfile, xtrlnkskip);
#ifndef lint
static const char rcsid[] =
- "$Id: rmt.c,v 1.6 1999/10/13 09:57:22 stelian Exp $";
+ "$Id: rmt.c,v 1.7 1999/11/11 16:14:01 tiniou Exp $";
#endif /* not linux */
/*
#include <sys/mtio.h>
#include <errno.h>
#include <fcntl.h>
+#ifndef __linux__
#include <sgtty.h>
+#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>