diff -ur clisp-2.30~/modules/wildcard/Makefile.in clisp-2.30/modules/wildcard/Makefile.in --- clisp-2.30~/modules/wildcard/Makefile.in 2000-03-31 18:17:50.000000000 -0600 +++ clisp-2.30/modules/wildcard/Makefile.in 2003-03-07 11:41:22.000000000 -0600 @@ -24,7 +24,7 @@ $(CC) $(CFLAGS) -I$(INCLUDES) -c wildcard.c fnmatch.o : fnmatch.c fnmatch.h - $(CC) $(CFLAGS) -I. -DHAVE_CONFIG_H -D_LIBC -c fnmatch.c + $(CC) $(CFLAGS) -I. -DHAVE_CONFIG_H -DLIBC -c fnmatch.c # Make a module clisp-module : all Only in clisp-2.30/modules/wildcard: Makefile.in~ diff -ur clisp-2.30~/modules/wildcard/fnmatch.c clisp-2.30/modules/wildcard/fnmatch.c --- clisp-2.30~/modules/wildcard/fnmatch.c 1998-07-22 15:22:52.000000000 -0500 +++ clisp-2.30/modules/wildcard/fnmatch.c 2003-03-07 11:41:14.000000000 -0600 @@ -37,7 +37,7 @@ program understand `configure --with-gnu-libc' and omit the object files, it is simpler to just do this in the source for each such file. */ -#if defined (_LIBC) || !defined (__GNU_LIBRARY__) +#if defined (LIBC) || !defined (__GNU_LIBRARY__) # if defined (STDC_HEADERS) || !defined (isascii) @@ -238,4 +238,4 @@ # undef FOLD } -#endif /* _LIBC or not __GNU_LIBRARY__. */ +#endif /* LIBC or not __GNU_LIBRARY__. */ Only in clisp-2.30/modules/wildcard: fnmatch.c~