summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-05-13 20:27:12 +0000
committerRoland McGrath <roland@gnu.org>1996-05-13 20:27:12 +0000
commit9fb16eeae8a9c33f1ab649afef84d21d0e16a8b4 (patch)
tree0713724254ed50578afd4e93b5784986dcd40f42
parent45086082a06454cd1a2d1b91390a04a726b3ac28 (diff)
* posix/glob.c [_AMIGA]: Don't include <pwd.h>.
(glob): Remove bogus & in call to globfree. [_AMIGA]: Use AmigaDOS file name conventions.
-rw-r--r--ChangeLog4
-rw-r--r--posix/glob.c28
2 files changed, 29 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 76cfb53e11..a098b67003 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
Mon May 13 12:03:03 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
+ * posix/glob.c [_AMIGA]: Don't include <pwd.h>.
+ (glob): Remove bogus & in call to globfree.
+ [_AMIGA]: Use AmigaDOS file name conventions.
+
* time/Makefile (zonenames): Target removed.
(extra-objs): Remove it from here.
Include the z.* files directly instead of including zonenames; use
diff --git a/posix/glob.c b/posix/glob.c
index 1a00af6f3f..7dfd7f5347 100644
--- a/posix/glob.c
+++ b/posix/glob.c
@@ -65,7 +65,9 @@ Cambridge, MA 02139, USA. */
#endif
#endif
+#ifndef _AMIGA
#include <pwd.h>
+#endif
#if !defined(__GNU_LIBRARY__) && !defined(STDC_HEADERS)
extern int errno;
@@ -160,6 +162,7 @@ extern void bcopy ();
#ifdef __GNUC__
__inline
#endif
+#ifndef __SASC
static char *
my_realloc (p, n)
char *p;
@@ -172,7 +175,8 @@ my_realloc (p, n)
return (char *) realloc (p, n);
}
#define realloc my_realloc
-#endif
+#endif /* __SASC */
+#endif /* __GNU_LIBRARY__ */
#if !defined(__alloca) && !defined(__GNU_LIBRARY__)
@@ -332,7 +336,7 @@ glob (pattern, flags, errfunc, pglob)
if (onealt == NULL)
{
if (!(flags & GLOB_APPEND))
- globfree (&pglob);
+ globfree (pglob);
return GLOB_NOSPACE;
}
#endif
@@ -391,7 +395,11 @@ glob (pattern, flags, errfunc, pglob)
if (filename == NULL)
{
filename = pattern;
+#ifdef _AMIGA
+ dirname = (char *) "";
+#else
dirname = (char *) ".";
+#endif
dirlen = 0;
}
else if (filename == pattern)
@@ -433,6 +441,10 @@ glob (pattern, flags, errfunc, pglob)
{
/* Look up home directory. */
dirname = getenv ("HOME");
+#ifdef _AMIGA
+ if (dirname == NULL || dirname[0] == '\0')
+ dirname = "SYS:";
+#else
if (dirname == NULL || dirname[0] == '\0')
{
extern char *getlogin __P ((void));
@@ -446,13 +458,19 @@ glob (pattern, flags, errfunc, pglob)
}
if (dirname == NULL || dirname[0] == '\0')
dirname = (char *) "~"; /* No luck. */
+#endif
}
else
{
+#ifdef _AMIGA
+ if (dirname == NULL || dirname[0] == '\0')
+ dirname = "SYS:";
+#else
/* Look up specific user's home directory. */
struct passwd *p = getpwnam (dirname + 1);
if (p != NULL)
dirname = p->pw_dir;
+#endif
}
}
@@ -774,7 +792,11 @@ glob_in_dir (pattern, directory, flags, errfunc, pglob)
if (fnmatch (pattern, name,
(!(flags & GLOB_PERIOD) ? FNM_PERIOD : 0) |
- ((flags & GLOB_NOESCAPE) ? FNM_NOESCAPE : 0)) == 0)
+ ((flags & GLOB_NOESCAPE) ? FNM_NOESCAPE : 0)
+#ifdef _AMIGA
+ | FNM_CASEFOLD
+#endif
+ ) == 0)
{
struct globlink *new
= (struct globlink *) __alloca (sizeof (struct globlink));