I got the make of make-3.75 to work.
It was a hack, but it worked.
Basically, /usr/lib already has a glob.h and it tries to use
it instead of the make-3.75/glob/glob.h
Instead of mucking around with the includes I edited the glob.h
copied the following lines and placed them into read.c and glob/glob.c
#define GLOB_ALTDIRFUNC (1 << 9)/* Use gl_opendir et al functions. */
#define GLOB_MAGCHAR (1 << 8)/* Set in gl_flags if any metachars seen. */
#define GLOB_BRACE (1 << 10)/* Expand "{a,b}" to "a" "b". */
#define GLOB_NOMAGIC (1 << 11)/* If no magic chars, return the pattern. */
#define GLOB_TILDE (1 <<12)/* Expand ~user and ~ to home directories. */
It compiled...If there is a better way, let me know.
-Patrick
Received on Fri Mar 28 1997 - 21:32:26 NZST