fe7dee4700
GCC-2.6.1 COMES TO FREEBSD-current ---------------------------------- Everybody needs to 'make world'. Oakland, Nov 2nd 1994. In a surprise move this sunny afternoon, the release- engineer for the slightly delayed FreeBSD-2.0, Poul-Henning Kamp (28), decided to pull in the new version 2.6.1 of the GNU C-compiler. The new version of the compiler was release today at noon, and hardly 9 hours later it was committed into the FreeBSD-current source-repository. "It's is simply because we have had too much trouble with the version 2.6.0 of the compiler" Poul-Henning told the FreeBSD-Gazette, "we took a gamble when we decided to use that as our compiler for the 2.0 release, but it seems to pay of in the end now" he concludes. The move has not been discussed on the "core" list at all, and will come as a surprise for most Poul-Hennings peers. "I have only discussed it with Jordan [J. K. Hubbard, the FreeBSD's resident humourist], and we agreed that we needed to do it, so ... I did it!". After a breath he added with a grin: "My email will probably get an all time 'disk-full' now!". This will bring quite a flag-day to the FreeBSD developers, the patch-file is almost 1.4 Megabyte, and they will have to run "make world" to get entirely -current again. "Too bad, but we just had to do this." Was the only comment from Poul-Henning to these problems. When asked how this move would impact the 2.0 release-date, Poul-Hennings face grew dark, he mumbled some very Danish words while he moved his fingers in strange geometrical patterns. Immediately something ecclipsed the Sun, a minor tremor shook the buildings, and the temperature fell significantly. We decided not to pursure the question. ----------- JOB-SECTION ----------- Are you a dedicated GCC-hacker ? We BADLY need somebody to look at the 'freebsd' OS in gcc, sanitize it and carry the patches back to the GNU people. In particular, we need to get out of the "i386-only" spot we are in now. I have the stuff to take a gnu-dist into bmake-form, and will do that part. Please apply to phk@freebsd.org No Novice Need Apply.
102 lines
2.1 KiB
C
102 lines
2.1 KiB
C
/* getpwd.c - get the working directory */
|
|
|
|
#include "config.h"
|
|
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
#ifndef errno
|
|
extern int errno;
|
|
#endif
|
|
|
|
/* Virtually every UN*X system now in common use (except for pre-4.3-tahoe
|
|
BSD systems) now provides getcwd as called for by POSIX. Allow for
|
|
the few exceptions to the general rule here. */
|
|
|
|
#if !(defined (POSIX) || defined (USG) || defined (VMS)) || defined (HAVE_GETWD)
|
|
#include <sys/param.h>
|
|
extern char *getwd ();
|
|
#define getcwd(buf,len) getwd(buf)
|
|
#ifdef MAXPATHLEN
|
|
#define GUESSPATHLEN (MAXPATHLEN + 1)
|
|
#else
|
|
#define GUESSPATHLEN 100
|
|
#endif
|
|
#else /* (defined (USG) || defined (VMS)) */
|
|
extern char *getcwd ();
|
|
/* We actually use this as a starting point, not a limit. */
|
|
#define GUESSPATHLEN 100
|
|
#endif /* (defined (USG) || defined (VMS)) */
|
|
#ifdef WINNT
|
|
#include <direct.h>
|
|
#endif
|
|
|
|
char *getenv ();
|
|
char *xmalloc ();
|
|
|
|
#ifndef VMS
|
|
|
|
/* Get the working directory. Use the PWD environment variable if it's
|
|
set correctly, since this is faster and gives more uniform answers
|
|
to the user. Yield the working directory if successful; otherwise,
|
|
yield 0 and set errno. */
|
|
|
|
char *
|
|
getpwd ()
|
|
{
|
|
static char *pwd;
|
|
static int failure_errno;
|
|
|
|
char *p = pwd;
|
|
size_t s;
|
|
struct stat dotstat, pwdstat;
|
|
|
|
if (!p && !(errno = failure_errno))
|
|
{
|
|
if (! ((p = getenv ("PWD")) != 0
|
|
&& *p == '/'
|
|
&& stat (p, &pwdstat) == 0
|
|
&& stat (".", &dotstat) == 0
|
|
&& dotstat.st_ino == pwdstat.st_ino
|
|
&& dotstat.st_dev == pwdstat.st_dev))
|
|
|
|
/* The shortcut didn't work. Try the slow, ``sure'' way. */
|
|
for (s = GUESSPATHLEN; ! getcwd (p = xmalloc (s), s); s *= 2)
|
|
{
|
|
int e = errno;
|
|
free (p);
|
|
#ifdef ERANGE
|
|
if (e != ERANGE)
|
|
#endif
|
|
{
|
|
errno = failure_errno = e;
|
|
p = 0;
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Cache the result. This assumes that the program does
|
|
not invoke chdir between calls to getpwd. */
|
|
pwd = p;
|
|
}
|
|
return p;
|
|
}
|
|
|
|
#else /* VMS */
|
|
|
|
#ifndef MAXPATHLEN
|
|
#define MAXPATHLEN 255
|
|
#endif
|
|
|
|
char *
|
|
getpwd ()
|
|
{
|
|
static char *pwd = 0;
|
|
|
|
if (!pwd) pwd = getcwd (xmalloc (MAXPATHLEN+1), MAXPATHLEN+1);
|
|
return pwd;
|
|
}
|
|
|
|
#endif /* VMS */
|