* Fix PR/1394.

* Apply changes from Paul Eggert.
* Many other cleanups (index/rindex --> strchr/strrchr, etc.)
This commit is contained in:
Paul Smith 1999-10-15 07:00:58 +00:00
parent c71200d022
commit 3e26bde6db
27 changed files with 274 additions and 195 deletions

View File

@ -1,3 +1,24 @@
1999-10-15 Paul D. Smith <psmith@gnu.org>
* main.c (quote_for_env): Rename from quote_as_word().
* make.h, *.c: Prefer strchr() and strrchr() in the code
rather than index() and rindex(). Define strchr/strrchr in terms
of index/rindex if the former aren't supported.
* default.c (CHECKOUT,v): Replace the fancy, complicated
patsubst/filter expression with a simple $(if ...) expression.
* main.c (print_usage): Add the bug reporting mailing address to
the --help output, as per the GNU coding standards.
Reported by Paul Eggert <eggert@twinsun.com>.
* README.customs: Installed information on running Customs-ized
GNU make and setuid root, collected by Ted Stern <stern@tera.com>.
* read.c (read_all_makefiles): PR/1394: Mark the end of the next
token in the MAKEFILES value string _before_ we dup it.
1999-10-13 Paul D. Smith <psmith@gnu.org> 1999-10-13 Paul D. Smith <psmith@gnu.org>
* configure.in (make_cv_sys_gnu_glob): We used to add the -Iglob * configure.in (make_cv_sys_gnu_glob): We used to add the -Iglob
@ -29,6 +50,25 @@
this--we need this to set up the chain properly for this--we need this to set up the chain properly for
target-specific variables. target-specific variables.
1999-09-29 Paul Eggert <eggert@twinsun.com>
* main.c (quote_as_word): Always quote for decode_env_switches
instead of for the shell, so that arguments with strange
characters are are passed to submakes correctly. Remove
double_dollars arg; we always double dollars now. All callers
changed.
(decode_env_switches): Don't run off the end of an environment
variable whose contents ends in a unescaped backslash.
1999-09-23 Paul D. Smith <psmith@gnu.org>
* commands.c, function.c, job.c, read.c: Cast arguments to
ctype.h functions/macros to _unsigned_ char for portability.
* remake.c, function.c: Compiler warning fixes: the second
argument to find_next_token() should be an _unsigned_ int*.
Reported by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
1999-09-23 Paul D. Smith <psmith@gnu.org> 1999-09-23 Paul D. Smith <psmith@gnu.org>
* Version 3.78.1 released. * Version 3.78.1 released.

18
NEWS
View File

@ -8,10 +8,26 @@ See the end for copying conditions.
All changes mentioned here are more fully described in the GNU make All changes mentioned here are more fully described in the GNU make
manual, which is contained in this distribution as the file make.texinfo. manual, which is contained in this distribution as the file make.texinfo.
Please send GNU make bug reports to bug-make@gnu.org. Please send GNU make bug reports to <bug-make@gnu.org>.
See the README file and the GNU make manual for details on sending bug See the README file and the GNU make manual for details on sending bug
reports. reports.
Version 3.78.2
* Previously, GNU make quoted variables such as MAKEFLAGS and
MAKEOVERRIDES for proper parsing by the shell. This allowed them to
be used within make build scripts. However, using them there is not
proper behavior: they are meant to be passed to subshells via the
environment. Unfortunately the values were not quoted properly to be
passed through the environment. This meant that some invocations of
make didn't properly pass values to submakes.
With this version we change that behavior: now these variables are
quoted properly for passing through the environment, which is the
correct way to do it. If you previously used these variables
explicitly within a make rule you may need to re-examine your use for
correctness given this change.
Version 3.78 Version 3.78
* Two new functions, $(error ...) and $(warning ...) are available. The * Two new functions, $(error ...) and $(warning ...) are available. The

View File

@ -56,6 +56,28 @@ See the documentation for Customs for information on starting and
configuring Customs. configuring Customs.
INVOKING CUSTOMS-IZED GNU MAKE
-----------------------------
One thing you should be aware of is that the default build environment
for Customs requires root permissions. Practically, this means that GNU
make must be installed setuid root to use Customs.
If you don't want to do this, you can build Customs such that root
permissions are not necessary. Andreas Stolcke <stolcke@speech.sri.com>
writes:
> pmake, gnumake or any other customs client program is not required to
> be suid root if customs was compiled WITHOUT the USE_RESERVED_PORTS
> option in customs/config.h. Make sure the "customs" service in
> /etc/services is defined accordingly (port 8231 instead of 1001).
> Not using USE_RESERVED_PORTS means that a user with programming
> skills could impersonate another user by writing a fake customs
> client that pretends to be someone other than himself. See the
> discussion in etc/SECURITY.
PROBLEMS PROBLEMS
-------- --------

4
ar.c
View File

@ -41,7 +41,7 @@ int
ar_name (name) ar_name (name)
char *name; char *name;
{ {
char *p = index (name, '('), *end = name + strlen (name) - 1; char *p = strchr (name, '('), *end = name + strlen (name) - 1;
if (p == 0 || p == name || *end != ')') if (p == 0 || p == name || *end != ')')
return 0; return 0;
@ -61,7 +61,7 @@ void
ar_parse_name (name, arname_p, memname_p) ar_parse_name (name, arname_p, memname_p)
char *name, **arname_p, **memname_p; char *name, **arname_p, **memname_p;
{ {
char *p = index (name, '('), *end = name + strlen (name) - 1; char *p = strchr (name, '('), *end = name + strlen (name) - 1;
if (arname_p != 0) if (arname_p != 0)
*arname_p = savestring (name, p - name); *arname_p = savestring (name, p - name);

View File

@ -37,8 +37,6 @@ USA. */
#include <lbr$routines.h> #include <lbr$routines.h>
#endif #endif
#define uppercasify(str) {char *str1; for (str1 = str; *str1; str1++) *str1 = _toupper(*str1);}
static void *VMS_lib_idx; static void *VMS_lib_idx;
static char *VMS_saved_memname; static char *VMS_saved_memname;
@ -83,7 +81,7 @@ VMS_get_member_info (module, rfa)
val = decc$fix_time (&mhd->mhd$l_datim); val = decc$fix_time (&mhd->mhd$l_datim);
for (i = 0; i < module->dsc$w_length; i++) for (i = 0; i < module->dsc$w_length; i++)
filename[i] = _tolower (module->dsc$a_pointer[i]); filename[i] = _tolower ((unsigned char)module->dsc$a_pointer[i]);
filename[i] = '\0'; filename[i] = '\0';
@ -172,7 +170,7 @@ ar_scan (archive, function, arg)
/* For comparison, delete .obj from arg name. */ /* For comparison, delete .obj from arg name. */
p = rindex (VMS_saved_memname, '.'); p = strrchr (VMS_saved_memname, '.');
if (p) if (p)
*p = '\0'; *p = '\0';
@ -698,7 +696,7 @@ ar_name_equal (name, mem, truncated)
{ {
char *p; char *p;
p = rindex (name, '/'); p = strrchr (name, '/');
if (p != 0) if (p != 0)
name = p + 1; name = p + 1;

View File

@ -46,7 +46,7 @@ set_file_variables (file)
if (ar_name (file->name)) if (ar_name (file->name))
{ {
unsigned int len; unsigned int len;
p = index (file->name, '('); p = strchr (file->name, '(');
at = (char *) alloca (p - file->name + 1); at = (char *) alloca (p - file->name + 1);
bcopy (file->name, at, p - file->name); bcopy (file->name, at, p - file->name);
at[p - file->name] = '\0'; at[p - file->name] = '\0';
@ -75,7 +75,7 @@ set_file_variables (file)
#ifndef NO_ARCHIVES #ifndef NO_ARCHIVES
if (ar_name (file->name)) if (ar_name (file->name))
{ {
name = index (file->name, '(') + 1; name = strchr (file->name, '(') + 1;
len = strlen (name) - 1; len = strlen (name) - 1;
} }
else else
@ -146,7 +146,7 @@ set_file_variables (file)
#ifndef NO_ARCHIVES #ifndef NO_ARCHIVES
if (ar_name (c)) if (ar_name (c))
{ {
c = index (c, '(') + 1; c = strchr (c, '(') + 1;
len = strlen (c) - 1; len = strlen (c) - 1;
} }
else else
@ -188,7 +188,7 @@ set_file_variables (file)
#ifndef NO_ARCHIVES #ifndef NO_ARCHIVES
if (ar_name (c)) if (ar_name (c))
{ {
c = index (c, '(') + 1; c = strchr (c, '(') + 1;
len = strlen (c) - 1; len = strlen (c) - 1;
} }
else else
@ -255,7 +255,7 @@ chop_commands (cmds)
{ {
char *end = p; char *end = p;
find_end:; find_end:;
end = index (end, '\n'); end = strchr (end, '\n');
if (end == 0) if (end == 0)
end = p + strlen (p); end = p + strlen (p);
else if (end > p && end[-1] == '\\') else if (end > p && end[-1] == '\\')
@ -341,7 +341,7 @@ execute_file_commands (file)
the commands are nothing but whitespace. */ the commands are nothing but whitespace. */
for (p = file->cmds->commands; *p != '\0'; ++p) for (p = file->cmds->commands; *p != '\0'; ++p)
if (!isspace (*p) && *p != '-' && *p != '@') if (!isspace ((unsigned char)*p) && *p != '-' && *p != '@')
break; break;
if (*p == '\0') if (*p == '\0')
{ {
@ -548,10 +548,10 @@ print_commands (cmds)
{ {
char *end; char *end;
while (isspace (*s)) while (isspace ((unsigned char)*s))
++s; ++s;
end = index (s, '\n'); end = strchr (s, '\n');
if (end == 0) if (end == 0)
end = s + strlen (s); end = s + strlen (s);

View File

@ -60,7 +60,7 @@ AC_MSG_RESULT($ac_cv_check_symbol_$1)])dnl
# clock_gettime is in -lposix4 in Solaris 2.6. # clock_gettime is in -lposix4 in Solaris 2.6.
AC_CHECK_LIB(posix4, clock_gettime) AC_CHECK_LIB(posix4, clock_gettime)
AC_CHECK_FUNCS(memmove strdup psignal mktemp pstat_getdynamic \ AC_CHECK_FUNCS(memmove strchr memcpy strdup psignal mktemp pstat_getdynamic \
clock_gettime dup2 getcwd sigsetmask sigaction getgroups \ clock_gettime dup2 getcwd sigsetmask sigaction getgroups \
setlinebuf seteuid setegid setreuid setregid pipe \ setlinebuf seteuid setegid setreuid setregid pipe \
strerror strsignal) strerror strsignal)

View File

@ -328,8 +328,7 @@ static char *default_variables[] =
/* This expands to $(CO) $(COFLAGS) $< $@ if $@ does not exist, /* This expands to $(CO) $(COFLAGS) $< $@ if $@ does not exist,
and to the empty string if $@ does exist. */ and to the empty string if $@ does exist. */
"CHECKOUT,v", "CHECKOUT,v",
"+$(patsubst $@-noexist,$(CO) $(COFLAGS) $< $@,\ "+$(if $(wildcard $@),,$(CO) $(COFLAGS) $< $@)",
$(filter-out $@,$(firstword $(wildcard $@) $@-noexist)))",
"CO", "co", "CO", "co",
"CPP", "$(CC) -E", "CPP", "$(CC) -E",

24
dir.c
View File

@ -84,7 +84,7 @@ dosify (filename)
/* First, transform the name part. */ /* First, transform the name part. */
for (i = 0; *filename != '\0' && i < 8 && *filename != '.'; ++i) for (i = 0; *filename != '\0' && i < 8 && *filename != '.'; ++i)
*df++ = tolower (*filename++); *df++ = tolower ((unsigned char)*filename++);
/* Now skip to the next dot. */ /* Now skip to the next dot. */
while (*filename != '\0' && *filename != '.') while (*filename != '\0' && *filename != '.')
@ -93,7 +93,7 @@ dosify (filename)
{ {
*df++ = *filename++; *df++ = *filename++;
for (i = 0; *filename != '\0' && i < 3 && *filename != '.'; ++i) for (i = 0; *filename != '\0' && i < 3 && *filename != '.'; ++i)
*df++ = tolower (*filename++); *df++ = tolower ((unsigned char)*filename++);
} }
/* Look for more dots. */ /* Look for more dots. */
@ -135,7 +135,7 @@ downcase (filename)
/* First, transform the name part. */ /* First, transform the name part. */
for (i = 0; *filename != '\0'; ++i) for (i = 0; *filename != '\0'; ++i)
{ {
*df++ = tolower (*filename); *df++ = tolower ((unsigned char)*filename);
++filename; ++filename;
} }
@ -635,16 +635,16 @@ file_exists_p (name)
#endif #endif
#ifdef VMS #ifdef VMS
dirend = rindex (name, ']'); dirend = strrchr (name, ']');
dirend++; dirend++;
if (dirend == (char *)1) if (dirend == (char *)1)
return dir_file_exists_p ("[]", name); return dir_file_exists_p ("[]", name);
#else /* !VMS */ #else /* !VMS */
dirend = rindex (name, '/'); dirend = strrchr (name, '/');
#if defined (WINDOWS32) || defined (__MSDOS__) #if defined (WINDOWS32) || defined (__MSDOS__)
/* Forward and backslashes might be mixed. We need the rightmost one. */ /* Forward and backslashes might be mixed. We need the rightmost one. */
{ {
char *bslash = rindex(name, '\\'); char *bslash = strrchr(name, '\\');
if (!dirend || bslash > dirend) if (!dirend || bslash > dirend)
dirend = bslash; dirend = bslash;
/* The case of "d:file". */ /* The case of "d:file". */
@ -693,16 +693,16 @@ file_impossible (filename)
register struct dirfile *new; register struct dirfile *new;
#ifdef VMS #ifdef VMS
dirend = rindex (p, ']'); dirend = strrchr (p, ']');
dirend++; dirend++;
if (dirend == (char *)1) if (dirend == (char *)1)
dir = find_directory ("[]"); dir = find_directory ("[]");
#else #else
dirend = rindex (p, '/'); dirend = strrchr (p, '/');
#if defined (WINDOWS32) || defined (__MSDOS__) #if defined (WINDOWS32) || defined (__MSDOS__)
/* Forward and backslashes might be mixed. We need the rightmost one. */ /* Forward and backslashes might be mixed. We need the rightmost one. */
{ {
char *bslash = rindex(p, '\\'); char *bslash = strrchr(p, '\\');
if (!dirend || bslash > dirend) if (!dirend || bslash > dirend)
dirend = bslash; dirend = bslash;
/* The case of "d:file". */ /* The case of "d:file". */
@ -796,15 +796,15 @@ file_impossible_p (filename)
register struct dirfile *next; register struct dirfile *next;
#ifdef VMS #ifdef VMS
dirend = rindex (filename, ']'); dirend = strrchr (filename, ']');
if (dirend == 0) if (dirend == 0)
dir = find_directory ("[]")->contents; dir = find_directory ("[]")->contents;
#else #else
dirend = rindex (filename, '/'); dirend = strrchr (filename, '/');
#if defined (WINDOWS32) || defined (__MSDOS__) #if defined (WINDOWS32) || defined (__MSDOS__)
/* Forward and backslashes might be mixed. We need the rightmost one. */ /* Forward and backslashes might be mixed. We need the rightmost one. */
{ {
char *bslash = rindex(filename, '\\'); char *bslash = strrchr(filename, '\\');
if (!dirend || bslash > dirend) if (!dirend || bslash > dirend)
dirend = bslash; dirend = bslash;
/* The case of "d:file". */ /* The case of "d:file". */

View File

@ -189,7 +189,7 @@ variable_expand_string (line, string, length)
variable output buffer, and skip them. Uninteresting chars end variable output buffer, and skip them. Uninteresting chars end
at the next $ or the end of the input. */ at the next $ or the end of the input. */
p1 = index (p, '$'); p1 = strchr (p, '$');
o = variable_buffer_output (o, p, p1 != 0 ? p1 - p : strlen (p) + 1); o = variable_buffer_output (o, p, p1 != 0 ? p1 - p : strlen (p) + 1);
@ -229,7 +229,7 @@ variable_expand_string (line, string, length)
/* Is there a variable reference inside the parens or braces? /* Is there a variable reference inside the parens or braces?
If so, expand it before expanding the entire reference. */ If so, expand it before expanding the entire reference. */
end = index (beg, closeparen); end = strchr (beg, closeparen);
if (end == 0) if (end == 0)
/* Unterminated variable reference. */ /* Unterminated variable reference. */
fatal (reading_file, _("unterminated variable reference")); fatal (reading_file, _("unterminated variable reference"));
@ -253,7 +253,7 @@ variable_expand_string (line, string, length)
{ {
beg = expand_argument (beg, p); /* Expand the name. */ beg = expand_argument (beg, p); /* Expand the name. */
free_beg = 1; /* Remember to free BEG when finished. */ free_beg = 1; /* Remember to free BEG when finished. */
end = index (beg, '\0'); end = strchr (beg, '\0');
} }
} }
else else
@ -273,7 +273,7 @@ variable_expand_string (line, string, length)
char *subst_beg, *subst_end, *replace_beg, *replace_end; char *subst_beg, *subst_end, *replace_beg, *replace_end;
subst_beg = colon + 1; subst_beg = colon + 1;
subst_end = index (subst_beg, '='); subst_end = strchr (subst_beg, '=');
if (subst_end == 0) if (subst_end == 0)
/* There is no = in sight. Punt on the substitution /* There is no = in sight. Punt on the substitution
reference and treat this as a variable name containing reference and treat this as a variable name containing

6
file.c
View File

@ -67,7 +67,7 @@ lookup_file (name)
#ifdef VMS #ifdef VMS
lname = (char *)malloc(strlen(name) + 1); lname = (char *)malloc(strlen(name) + 1);
for (n=name, ln=lname; *n != '\0'; ++n, ++ln) for (n=name, ln=lname; *n != '\0'; ++n, ++ln)
*ln = isupper(*n) ? tolower(*n) : *n; *ln = isupper((unsigned char)*n) ? tolower((unsigned char)*n) : *n;
*ln = '\0'; *ln = '\0';
name = lname; name = lname;
@ -133,8 +133,8 @@ enter_file (name)
lname = (char *)malloc (strlen (name) + 1); lname = (char *)malloc (strlen (name) + 1);
for (n = name, ln = lname; *n != '\0'; ++n, ++ln) for (n = name, ln = lname; *n != '\0'; ++n, ++ln)
{ {
if (isupper(*n)) if (isupper((unsigned char)*n))
*ln = tolower(*n); *ln = tolower((unsigned char)*n);
else else
*ln = *n; *ln = *n;
} }

View File

@ -551,7 +551,7 @@ func_basename_dir(o, argv, funcname)
char *p3 = argv[0]; char *p3 = argv[0];
char *p2=0; char *p2=0;
int doneany=0; int doneany=0;
int len=0; unsigned int len=0;
char *p=0; char *p=0;
int is_basename= streq(funcname, "basename"); int is_basename= streq(funcname, "basename");
int is_dir= !is_basename; int is_dir= !is_basename;
@ -611,9 +611,9 @@ func_addsuffix_addprefix(o, argv, funcname)
int is_addprefix = streq (funcname, "addprefix"); int is_addprefix = streq (funcname, "addprefix");
int is_addsuffix = !is_addprefix; int is_addsuffix = !is_addprefix;
int doneany =0; int doneany = 0;
char *p=0; char *p;
int len =0; unsigned int len;
while ((p = find_next_token (&list_iterator, &len)) != 0) while ((p = find_next_token (&list_iterator, &len)) != 0)
{ {
@ -652,8 +652,8 @@ func_firstword(o, argv, funcname)
char **argv; char **argv;
const char *funcname; const char *funcname;
{ {
int i=0; unsigned int i;
char *words = argv[0]; char *words = argv[0]; /* Use a temp variable for find_next_token */
char *p = find_next_token (&words, &i); char *p = find_next_token (&words, &i);
if (p != 0) if (p != 0)
@ -688,9 +688,9 @@ strip_whitespace (begpp, endpp)
char **begpp; char **begpp;
char **endpp; char **endpp;
{ {
while (isspace (**begpp) && *begpp <= *endpp) while (isspace ((unsigned char)**begpp) && *begpp <= *endpp)
(*begpp) ++; (*begpp) ++;
while (isspace (**endpp) && *endpp >= *begpp) while (isspace ((unsigned char)**endpp) && *endpp >= *begpp)
(*endpp) --; (*endpp) --;
return *begpp; return *begpp;
} }
@ -818,11 +818,11 @@ func_foreach (o, argv, funcname)
char *list = expand_argument (argv[1], argv[2] -1); char *list = expand_argument (argv[1], argv[2] -1);
char *body = savestring (argv[2], argv[3] - argv[2] - 1); char *body = savestring (argv[2], argv[3] - argv[2] - 1);
int len =0; int doneany = 0;
char *list_iterator = list; char *list_iterator = list;
char *p; char *p;
register struct variable *var=0; unsigned int len;
int doneany =0; register struct variable *var;
push_new_variable_scope (); push_new_variable_scope ();
var = define_variable (varname, strlen (varname), "", o_automatic, 0); var = define_variable (varname, strlen (varname), "", o_automatic, 0);
@ -874,16 +874,15 @@ func_filter_filterout (o, argv, funcname)
char **argv; char **argv;
const char *funcname; const char *funcname;
{ {
struct a_word *wordhead =0; struct a_word *wordhead = 0;
struct a_word *wordtail =0; struct a_word *wordtail = 0;
int is_filter = streq (funcname, "filter"); int is_filter = streq (funcname, "filter");
char *patterns = argv[0]; char *patterns = argv[0];
char *word_iterator = argv[1];
char *p; char *p;
int len; unsigned int len;
char *word_iterator = argv[1];
/* Chop ARGV[1] up into words and then run each pattern through. */ /* Chop ARGV[1] up into words and then run each pattern through. */
while ((p = find_next_token (&word_iterator, &len)) != 0) while ((p = find_next_token (&word_iterator, &len)) != 0)
@ -904,13 +903,12 @@ func_filter_filterout (o, argv, funcname)
if (wordhead != 0) if (wordhead != 0)
{ {
struct a_word *wp =0;
char *pat_iterator = patterns; char *pat_iterator = patterns;
int doneany = 0; int doneany = 0;
struct a_word *wp;
wordtail->next = 0; wordtail->next = 0;
/* Run each pattern through the words, killing words. */ /* Run each pattern through the words, killing words. */
while ((p = find_next_token (&pat_iterator, &len)) != 0) while ((p = find_next_token (&pat_iterator, &len)) != 0)
{ {
@ -958,10 +956,10 @@ func_strip(o, argv, funcname)
int i=0; int i=0;
char *word_start=0; char *word_start=0;
while (isspace(*p)) while (isspace ((unsigned char)*p))
++p; ++p;
word_start = p; word_start = p;
for (i=0; *p != '\0' && !isspace(*p); ++p, ++i) for (i=0; *p != '\0' && !isspace ((unsigned char)*p); ++p, ++i)
{} {}
if (!i) if (!i)
break; break;
@ -1031,15 +1029,15 @@ func_sort (o, argv, funcname)
/* Chop ARGV[0] into words and put them in WORDS. */ /* Chop ARGV[0] into words and put them in WORDS. */
char *t = argv[0]; char *t = argv[0];
char *p=0; char *p;
int len; unsigned int len;
int i; int i;
while ((p = find_next_token (&t, &len)) != 0) while ((p = find_next_token (&t, &len)) != 0)
{ {
if (wordi >= nwords - 1) if (wordi >= nwords - 1)
{ {
nwords = 2* nwords + 5; nwords = (2 * nwords) + 5;
words = (char **) xrealloc ((char *) words, words = (char **) xrealloc ((char *) words,
nwords * sizeof (char *)); nwords * sizeof (char *));
} }
@ -1599,7 +1597,7 @@ func_not (char* o, char **argv, char *funcname)
{ {
char * s = argv[0]; char * s = argv[0];
int result = 0; int result = 0;
while (isspace (*s)) while (isspace ((unsigned char)*s))
s++; s++;
result = ! (*s); result = ! (*s);
o = variable_buffer_output (o, result ? "1" : "", result); o = variable_buffer_output (o, result ? "1" : "", result);
@ -1814,7 +1812,7 @@ func_call (o, argv, funcname)
flen = strlen (argv[0]); flen = strlen (argv[0]);
fname = argv[0] + flen - 1; fname = argv[0] + flen - 1;
while (isspace (*fname)) while (isspace ((unsigned char)*fname))
--fname; --fname;
fname[1] = '\0'; fname[1] = '\0';

View File

@ -88,7 +88,7 @@ pattern_search (file, archive, depth, recursions)
unsigned int recursions; unsigned int recursions;
{ {
/* Filename we are searching for a rule for. */ /* Filename we are searching for a rule for. */
char *filename = archive ? index (file->name, '(') : file->name; char *filename = archive ? strchr (file->name, '(') : file->name;
/* Length of FILENAME. */ /* Length of FILENAME. */
unsigned int namelen = strlen (filename); unsigned int namelen = strlen (filename);
@ -165,14 +165,14 @@ pattern_search (file, archive, depth, recursions)
but not counting any slash at the end. (foo/bar/ counts as but not counting any slash at the end. (foo/bar/ counts as
bar/ in directory foo/, not empty in directory foo/bar/.) */ bar/ in directory foo/, not empty in directory foo/bar/.) */
#ifdef VMS #ifdef VMS
lastslash = rindex (filename, ']'); lastslash = strrchr (filename, ']');
#else #else
lastslash = rindex (filename, '/'); lastslash = strrchr (filename, '/');
#if defined(__MSDOS__) || defined(WINDOWS32) #if defined(__MSDOS__) || defined(WINDOWS32)
/* Handle backslashes (possibly mixed with forward slashes) /* Handle backslashes (possibly mixed with forward slashes)
and the case of "d:file". */ and the case of "d:file". */
{ {
char *bslash = rindex (filename, '\\'); char *bslash = strrchr (filename, '\\');
if (lastslash == 0 || bslash > lastslash) if (lastslash == 0 || bslash > lastslash)
lastslash = bslash; lastslash = bslash;
if (lastslash == 0 && filename[0] && filename[1] == ':') if (lastslash == 0 && filename[0] && filename[1] == ':')
@ -228,9 +228,9 @@ pattern_search (file, archive, depth, recursions)
prefix and the target pattern does not contain a slash. */ prefix and the target pattern does not contain a slash. */
#ifdef VMS #ifdef VMS
check_lastslash = lastslash != 0 && index (target, ']') == 0; check_lastslash = lastslash != 0 && strchr (target, ']') == 0;
#else #else
check_lastslash = lastslash != 0 && index (target, '/') == 0; check_lastslash = lastslash != 0 && strchr (target, '/') == 0;
#endif #endif
if (check_lastslash) if (check_lastslash)
{ {
@ -346,7 +346,7 @@ pattern_search (file, archive, depth, recursions)
struct file *fp; struct file *fp;
/* If the dependency name has a %, substitute the stem. */ /* If the dependency name has a %, substitute the stem. */
p = index (dep_name (dep), '%'); p = strchr (dep_name (dep), '%');
if (p != 0) if (p != 0)
{ {
register unsigned int i; register unsigned int i;

23
job.c
View File

@ -1257,7 +1257,7 @@ new_job (file)
IN gets ahead of OUT. */ IN gets ahead of OUT. */
in = out = cmds->command_lines[i]; in = out = cmds->command_lines[i];
while ((ref = index (in, '$')) != 0) while ((ref = strchr (in, '$')) != 0)
{ {
++ref; /* Move past the $. */ ++ref; /* Move past the $. */
@ -2099,12 +2099,12 @@ construct_command_argv_internal (line, restp, shell, ifs, batch_filename_ptr)
If we see any of those, punt. If we see any of those, punt.
But on MSDOS, if we use COMMAND.COM, double and single But on MSDOS, if we use COMMAND.COM, double and single
quotes have the same effect. */ quotes have the same effect. */
else if (instring == '"' && index ("\\$`", *p) != 0 && unixy_shell) else if (instring == '"' && strchr ("\\$`", *p) != 0 && unixy_shell)
goto slow; goto slow;
else else
*ap++ = *p; *ap++ = *p;
} }
else if (index (sh_chars, *p) != 0) else if (strchr (sh_chars, *p) != 0)
/* Not inside a string, but it's a special char. */ /* Not inside a string, but it's a special char. */
goto slow; goto slow;
#ifdef __MSDOS__ #ifdef __MSDOS__
@ -2181,8 +2181,9 @@ construct_command_argv_internal (line, restp, shell, ifs, batch_filename_ptr)
} }
else else
#endif #endif
if (p[1] != '\\' && p[1] != '\'' && !isspace (p[1]) if (p[1] != '\\' && p[1] != '\''
&& (index (sh_chars_sh, p[1]) == 0)) && !isspace ((unsigned char)p[1])
&& (strchr (sh_chars_sh, p[1]) == 0))
/* back up one notch, to copy the backslash */ /* back up one notch, to copy the backslash */
--p; --p;
@ -2330,7 +2331,7 @@ construct_command_argv_internal (line, restp, shell, ifs, batch_filename_ptr)
*/ */
/* Make sure not to bother processing an empty line. */ /* Make sure not to bother processing an empty line. */
while (isspace (*line)) while (isspace ((unsigned char)*line))
++line; ++line;
if (*line == '\0') if (*line == '\0')
return 0; return 0;
@ -2347,7 +2348,7 @@ construct_command_argv_internal (line, restp, shell, ifs, batch_filename_ptr)
char *new_line = (char *) alloca (shell_len + (sizeof (minus_c) - 1) char *new_line = (char *) alloca (shell_len + (sizeof (minus_c) - 1)
+ (line_len * 2) + 1); + (line_len * 2) + 1);
char* command_ptr = NULL; /* used for batch_mode_shell mode */ char *command_ptr = NULL; /* used for batch_mode_shell mode */
ap = new_line; ap = new_line;
bcopy (shell, ap, shell_len); bcopy (shell, ap, shell_len);
@ -2387,8 +2388,8 @@ construct_command_argv_internal (line, restp, shell, ifs, batch_filename_ptr)
/* DOS shells don't know about backslash-escaping. */ /* DOS shells don't know about backslash-escaping. */
if (unixy_shell && !batch_mode_shell && if (unixy_shell && !batch_mode_shell &&
(*p == '\\' || *p == '\'' || *p == '"' (*p == '\\' || *p == '\'' || *p == '"'
|| isspace (*p) || isspace ((unsigned char)*p)
|| index (sh_chars, *p) != 0)) || strchr (sh_chars, *p) != 0))
*ap++ = '\\'; *ap++ = '\\';
#ifdef __MSDOS__ #ifdef __MSDOS__
else if (unixy_shell && strneq (p, "...", 3)) else if (unixy_shell && strneq (p, "...", 3))
@ -2447,7 +2448,7 @@ construct_command_argv_internal (line, restp, shell, ifs, batch_filename_ptr)
fclose (batch); fclose (batch);
/* create argv */ /* create argv */
new_argv = (char **) xmalloc(3 * sizeof(char *)); new_argv = (char **) xmalloc(3 * sizeof (char *));
if (unixy_shell) { if (unixy_shell) {
new_argv[0] = xstrdup (shell); new_argv[0] = xstrdup (shell);
new_argv[1] = *batch_filename_ptr; /* only argv[0] gets freed later */ new_argv[1] = *batch_filename_ptr; /* only argv[0] gets freed later */
@ -2461,7 +2462,7 @@ construct_command_argv_internal (line, restp, shell, ifs, batch_filename_ptr)
if (unixy_shell) if (unixy_shell)
new_argv = construct_command_argv_internal (new_line, (char **) NULL, new_argv = construct_command_argv_internal (new_line, (char **) NULL,
(char *) 0, (char *) 0, (char *) 0, (char *) 0,
(char *) 0); (char **) 0);
#ifdef __MSDOS__ #ifdef __MSDOS__
else else
{ {

49
main.c
View File

@ -73,7 +73,7 @@ static void print_version PARAMS ((void));
static void decode_switches PARAMS ((int argc, char **argv, int env)); static void decode_switches PARAMS ((int argc, char **argv, int env));
static void decode_env_switches PARAMS ((char *envar, unsigned int len)); static void decode_env_switches PARAMS ((char *envar, unsigned int len));
static void define_makeflags PARAMS ((int all, int makefile)); static void define_makeflags PARAMS ((int all, int makefile));
static char *quote_as_word PARAMS ((char *out, char *in, int double_dollars)); static char *quote_for_env PARAMS ((char *out, char *in));
/* The structure that describes an accepted command switch. */ /* The structure that describes an accepted command switch. */
@ -784,18 +784,18 @@ int main (int argc, char ** argv)
else else
{ {
#ifdef VMS #ifdef VMS
program = rindex (argv[0], ']'); program = strrchr (argv[0], ']');
#else #else
program = rindex (argv[0], '/'); program = strrchr (argv[0], '/');
#endif #endif
#ifdef __MSDOS__ #ifdef __MSDOS__
if (program == 0) if (program == 0)
program = rindex (argv[0], '\\'); program = strrchr (argv[0], '\\');
else else
{ {
/* Some weird environments might pass us argv[0] with /* Some weird environments might pass us argv[0] with
both kinds of slashes; we must find the rightmost. */ both kinds of slashes; we must find the rightmost. */
char *p = rindex (argv[0], '\\'); char *p = strrchr (argv[0], '\\');
if (p && p > program) if (p && p > program)
program = p; program = p;
} }
@ -983,7 +983,7 @@ int main (int argc, char ** argv)
argv[0] = concat (current_directory, "/", argv[0]); argv[0] = concat (current_directory, "/", argv[0]);
#else /* !__MSDOS__ */ #else /* !__MSDOS__ */
if (current_directory[0] != '\0' if (current_directory[0] != '\0'
&& argv[0] != 0 && argv[0][0] != '/' && index (argv[0], '/') != 0) && argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0)
argv[0] = concat (current_directory, "/", argv[0]); argv[0] = concat (current_directory, "/", argv[0]);
#endif /* !__MSDOS__ */ #endif /* !__MSDOS__ */
#endif /* WINDOWS32 */ #endif /* WINDOWS32 */
@ -1010,7 +1010,8 @@ int main (int argc, char ** argv)
if (! v->recursive) if (! v->recursive)
++len; ++len;
++len; ++len;
len += 3 * strlen (v->value); len += 2 * strlen (v->value);
++len;
} }
/* Now allocate a buffer big enough and fill it. */ /* Now allocate a buffer big enough and fill it. */
@ -1018,11 +1019,11 @@ int main (int argc, char ** argv)
for (cv = command_variables; cv != 0; cv = cv->next) for (cv = command_variables; cv != 0; cv = cv->next)
{ {
v = cv->variable; v = cv->variable;
p = quote_as_word (p, v->name, 0); p = quote_for_env (p, v->name);
if (! v->recursive) if (! v->recursive)
*p++ = ':'; *p++ = ':';
*p++ = '='; *p++ = '=';
p = quote_as_word (p, v->value, 0); p = quote_for_env (p, v->value);
*p++ = ' '; *p++ = ' ';
} }
p[-1] = '\0'; /* Kill the final space and terminate. */ p[-1] = '\0'; /* Kill the final space and terminate. */
@ -2012,6 +2013,8 @@ print_usage (bad)
- DESCRIPTION_COLUMN, - DESCRIPTION_COLUMN,
buf, cs->description); buf, cs->description);
} }
fprintf (usageto, _("\nReport bugs to <bug-make@gnu.org>.\n"));
} }
/* Decode switches from ARGC and ARGV. /* Decode switches from ARGC and ARGV.
@ -2211,7 +2214,7 @@ decode_env_switches (envar, len)
argv[argc] = p; argv[argc] = p;
while (*value != '\0') while (*value != '\0')
{ {
if (*value == '\\') if (*value == '\\' && value[1] != '\0')
++value; /* Skip the backslash. */ ++value; /* Skip the backslash. */
else if (isblank (*value)) else if (isblank (*value))
{ {
@ -2228,7 +2231,7 @@ decode_env_switches (envar, len)
*p = '\0'; *p = '\0';
argv[++argc] = 0; argv[++argc] = 0;
if (argv[1][0] != '-' && index (argv[1], '=') == 0) if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
/* The first word doesn't start with a dash and isn't a variable /* The first word doesn't start with a dash and isn't a variable
definition. Add a dash and pass it along to decode_switches. We definition. Add a dash and pass it along to decode_switches. We
need permanent storage for this in case decode_switches saves need permanent storage for this in case decode_switches saves
@ -2240,27 +2243,21 @@ decode_env_switches (envar, len)
} }
/* Quote the string IN so that it will be interpreted as a single word with /* Quote the string IN so that it will be interpreted as a single word with
no magic by the shell; if DOUBLE_DOLLARS is nonzero, also double dollar no magic by decode_env_switches; also double dollar signs to avoid
signs to avoid variable expansion in make itself. Write the result into variable expansion in make itself. Write the result into OUT, returning
OUT, returning the address of the next character to be written. the address of the next character to be written.
Allocating space for OUT twice the length of IN (thrice if Allocating space for OUT twice the length of IN is always sufficient. */
DOUBLE_DOLLARS is nonzero) is always sufficient. */
static char * static char *
quote_as_word (out, in, double_dollars) quote_for_env (out, in)
char *out, *in; char *out, *in;
int double_dollars;
{ {
while (*in != '\0') while (*in != '\0')
{ {
#ifdef VMS if (*in == '$')
if (index ("^;'\"*?$<>(){}|&~`\\ \t\r\n\f\v", *in) != 0)
#else
if (index ("^;'\"*?[]$<>(){}|&~`\\ \t\r\n\f\v", *in) != 0)
#endif
*out++ = '\\';
if (double_dollars && *in == '$')
*out++ = '$'; *out++ = '$';
else if (isblank (*in) || *in == '\\')
*out++ = '\\';
*out++ = *in++; *out++ = *in++;
} }
@ -2429,7 +2426,7 @@ define_makeflags (all, makefile)
{ {
/* Add its argument too. */ /* Add its argument too. */
*p++ = !short_option (flags->cs->c) ? '=' : ' '; *p++ = !short_option (flags->cs->c) ? '=' : ' ';
p = quote_as_word (p, flags->arg, 1); p = quote_for_env (p, flags->arg);
} }
++words; ++words;
/* Write a following space and dash, for the next flag. */ /* Write a following space and dash, for the next flag. */

37
make.h
View File

@ -240,24 +240,8 @@ extern void exit PARAMS ((int)) __attribute__ ((noreturn));
#endif /* Standard headers. */ #endif /* Standard headers. */
#if ST_MTIM_NSEC
# if HAVE_INTTYPES_H
# include <inttypes.h>
# endif
# define FILE_TIMESTAMP uintmax_t
#else
# define FILE_TIMESTAMP time_t
#endif
#ifdef ANSI_STRING #ifdef ANSI_STRING
# ifndef index
# define index(s, c) strchr((s), (c))
# endif
# ifndef rindex
# define rindex(s, c) strrchr((s), (c))
# endif
# ifndef bcmp # ifndef bcmp
# define bcmp(s1, s2, n) memcmp ((s1), (s2), (n)) # define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
# endif # endif
@ -270,6 +254,11 @@ extern void exit PARAMS ((int)) __attribute__ ((noreturn));
#else /* Not ANSI_STRING. */ #else /* Not ANSI_STRING. */
# ifndef HAVE_STRCHR
# define strchr(s, c) index((s), (c))
# define strrchr(s, c) rindex((s), (c))
# endif
# ifndef bcmp # ifndef bcmp
extern int bcmp PARAMS ((const char *, const char *, int)); extern int bcmp PARAMS ((const char *, const char *, int));
# endif # endif
@ -303,6 +292,15 @@ extern char *alloca ();
# endif /* HAVE_ALLOCA_H. */ # endif /* HAVE_ALLOCA_H. */
#endif /* GCC. */ #endif /* GCC. */
#if ST_MTIM_NSEC
# if HAVE_INTTYPES_H
# include <inttypes.h>
# endif
# define FILE_TIMESTAMP uintmax_t
#else
# define FILE_TIMESTAMP time_t
#endif
/* ISDIGIT offers the following features: /* ISDIGIT offers the following features:
- Its arg may be any int or unsigned int; it need not be an unsigned char. - Its arg may be any int or unsigned int; it need not be an unsigned char.
- It's guaranteed to evaluate its argument exactly once. - It's guaranteed to evaluate its argument exactly once.
@ -321,8 +319,9 @@ extern char *alloca ();
# ifdef HAVE_CASE_INSENSITIVE_FS # ifdef HAVE_CASE_INSENSITIVE_FS
/* This is only used on Windows/DOS platforms, so we assume strcmpi(). */ /* This is only used on Windows/DOS platforms, so we assume strcmpi(). */
# define strieq(a, b) \ # define strieq(a, b) \
((a) == (b) || \ ((a) == (b) \
(tolower(*(a)) == tolower(*(b)) && (*(a) == '\0' || !strcmpi ((a) + 1, (b) + 1)))) || (tolower((unsigned char)*(a)) == tolower((unsigned char)*(b)) \
&& (*(a) == '\0' || !strcmpi ((a) + 1, (b) + 1))))
# else # else
# define strieq(a, b) streq(a, b) # define strieq(a, b) streq(a, b)
# endif # endif
@ -338,7 +337,7 @@ extern char *alloca ();
((var += (c)), (var = ((var) << 7) + ((var) >> 20))) ((var += (c)), (var = ((var) << 7) + ((var) >> 20)))
#ifdef HAVE_CASE_INSENSITIVE_FS /* Fold filenames */ #ifdef HAVE_CASE_INSENSITIVE_FS /* Fold filenames */
# define HASHI(var, c) \ # define HASHI(var, c) \
((var += tolower((c))), (var = ((var) << 7) + ((var) >> 20))) ((var += tolower((unsigned char)(c))), (var = ((var) << 7) + ((var) >> 20)))
#else #else
# define HASHI(var, c) HASH(var,c) # define HASHI(var, c) HASH(var,c)
#endif #endif

2
misc.c
View File

@ -81,7 +81,7 @@ collapse_continuations (line)
register int backslash; register int backslash;
register unsigned int bs_write; register unsigned int bs_write;
in = index (line, '\n'); in = strchr (line, '\n');
if (in == 0) if (in == 0)
return; return;

60
read.c
View File

@ -177,9 +177,9 @@ read_all_makefiles (makefiles)
while ((name = find_next_token (&p, &length)) != 0) while ((name = find_next_token (&p, &length)) != 0)
{ {
name = xstrdup (name);
if (*p != '\0') if (*p != '\0')
*p++ = '\0'; *p++ = '\0';
name = xstrdup (name);
if (read_makefile (name, if (read_makefile (name,
RM_NO_DEFAULT_GOAL|RM_INCLUDED|RM_DONTCARE) < 2) RM_NO_DEFAULT_GOAL|RM_INCLUDED|RM_DONTCARE) < 2)
free (name); free (name);
@ -478,7 +478,7 @@ read_makefile (filename, flags)
/* Compare a word, both length and contents. */ /* Compare a word, both length and contents. */
#define word1eq(s, l) (len == l && strneq (s, p, l)) #define word1eq(s, l) (len == l && strneq (s, p, l))
p = collapsed; p = collapsed;
while (isspace (*p)) while (isspace ((unsigned char)*p))
++p; ++p;
if (*p == '\0') if (*p == '\0')
/* This line is completely empty. */ /* This line is completely empty. */
@ -488,7 +488,7 @@ read_makefile (filename, flags)
* ":" here since we compare tokens by length (so "export" will never * ":" here since we compare tokens by length (so "export" will never
* be equal to "export:"). * be equal to "export:").
*/ */
for (p2 = p+1; *p2 != '\0' && !isspace(*p2); ++p2) for (p2 = p+1; *p2 != '\0' && !isspace ((unsigned char)*p2); ++p2)
{} {}
len = p2 - p; len = p2 - p;
@ -496,7 +496,7 @@ read_makefile (filename, flags)
since it can't be a preprocessor token--this allows targets named since it can't be a preprocessor token--this allows targets named
`ifdef', `export', etc. */ `ifdef', `export', etc. */
reading_target = 0; reading_target = 0;
while (isspace (*p2)) while (isspace ((unsigned char)*p2))
++p2; ++p2;
if (*p2 == '\0') if (*p2 == '\0')
p2 = NULL; p2 = NULL;
@ -546,7 +546,7 @@ read_makefile (filename, flags)
with trailing blanks stripped (comments have already been with trailing blanks stripped (comments have already been
removed), so it could be a complex variable/function removed), so it could be a complex variable/function
reference that might contain blanks. */ reference that might contain blanks. */
p = index (p2, '\0'); p = strchr (p2, '\0');
while (isblank (p[-1])) while (isblank (p[-1]))
--p; --p;
do_define (p2, p - p2, o_file, infile, &fileinfo); do_define (p2, p - p2, o_file, infile, &fileinfo);
@ -573,7 +573,7 @@ read_makefile (filename, flags)
with trailing blanks stripped (comments have already been with trailing blanks stripped (comments have already been
removed), so it could be a complex variable/function removed), so it could be a complex variable/function
reference that might contain blanks. */ reference that might contain blanks. */
p = index (p2, '\0'); p = strchr (p2, '\0');
while (isblank (p[-1])) while (isblank (p[-1]))
--p; --p;
do_define (p2, p - p2, o_override, infile, &fileinfo); do_define (p2, p - p2, o_override, infile, &fileinfo);
@ -837,8 +837,8 @@ read_makefile (filename, flags)
are whitespace and a left paren. If others are possible, are whitespace and a left paren. If others are possible,
they should be added to the string in the call to index. */ they should be added to the string in the call to index. */
while (colonp && (colonp[1] == '/' || colonp[1] == '\\') && while (colonp && (colonp[1] == '/' || colonp[1] == '\\') &&
colonp > p2 && isalpha(colonp[-1]) && colonp > p2 && isalpha ((unsigned char)colonp[-1]) &&
(colonp == p2 + 1 || index(" \t(", colonp[-2]) != 0)) (colonp == p2 + 1 || strchr (" \t(", colonp[-2]) != 0))
colonp = find_char_unquote(colonp + 1, ":", 0); colonp = find_char_unquote(colonp + 1, ":", 0);
#endif #endif
if (colonp != 0) if (colonp != 0)
@ -957,7 +957,7 @@ read_makefile (filename, flags)
} }
/* Is this a static pattern rule: `target: %targ: %dep; ...'? */ /* Is this a static pattern rule: `target: %targ: %dep; ...'? */
p = index (p2, ':'); p = strchr (p2, ':');
while (p != 0 && p[-1] == '\\') while (p != 0 && p[-1] == '\\')
{ {
register char *q = &p[-1]; register char *q = &p[-1];
@ -965,7 +965,7 @@ read_makefile (filename, flags)
while (*q-- == '\\') while (*q-- == '\\')
backslash = !backslash; backslash = !backslash;
if (backslash) if (backslash)
p = index (p + 1, ':'); p = strchr (p + 1, ':');
else else
break; break;
} }
@ -982,7 +982,8 @@ read_makefile (filename, flags)
The rule is that it's only a target, if there are TWO :'s The rule is that it's only a target, if there are TWO :'s
OR a space around the :. OR a space around the :.
*/ */
if (p && !(isspace(p[1]) || !p[1] || isspace(p[-1]))) if (p && !(isspace ((unsigned char)p[1]) || !p[1]
|| isspace ((unsigned char)p[-1])))
p = 0; p = 0;
#endif #endif
#if defined (WINDOWS32) || defined (__MSDOS__) #if defined (WINDOWS32) || defined (__MSDOS__)
@ -990,9 +991,9 @@ read_makefile (filename, flags)
check_again = 0; check_again = 0;
/* For MSDOS and WINDOWS32, skip a "C:\..." or a "C:/..." */ /* For MSDOS and WINDOWS32, skip a "C:\..." or a "C:/..." */
if (p != 0 && (p[1] == '\\' || p[1] == '/') && if (p != 0 && (p[1] == '\\' || p[1] == '/') &&
isalpha(p[-1]) && isalpha ((unsigned char)p[-1]) &&
(p == p2 + 1 || index(" \t:(", p[-2]) != 0)) { (p == p2 + 1 || strchr (" \t:(", p[-2]) != 0)) {
p = index(p + 1, ':'); p = strchr (p + 1, ':');
check_again = 1; check_again = 1;
} }
} while (check_again); } while (check_again);
@ -1741,9 +1742,9 @@ record_files (filenames, pattern, pattern_percent, deps, cmds_started,
/* See if this is first target seen whose name does /* See if this is first target seen whose name does
not start with a `.', unless it contains a slash. */ not start with a `.', unless it contains a slash. */
if (default_goal_file == 0 && set_default if (default_goal_file == 0 && set_default
&& (*name != '.' || index (name, '/') != 0 && (*name != '.' || strchr (name, '/') != 0
#if defined(__MSDOS__) || defined(WINDOWS32) #if defined(__MSDOS__) || defined(WINDOWS32)
|| index (name, '\\') != 0 || strchr (name, '\\') != 0
#endif #endif
)) ))
{ {
@ -1806,7 +1807,7 @@ find_char_unquote (string, stopchars, blank)
while (1) while (1)
{ {
while (*p != '\0' && index (stopchars, *p) == 0 while (*p != '\0' && strchr (stopchars, *p) == 0
&& (!blank || !isblank (*p))) && (!blank || !isblank (*p)))
++p; ++p;
if (*p == '\0') if (*p == '\0')
@ -1905,8 +1906,9 @@ parse_file_seq (stringp, stopchar, size, strip)
*p =' '; *p =' ';
#endif #endif
#ifdef _AMIGA #ifdef _AMIGA
if (stopchar == ':' && p && *p == ':' && if (stopchar == ':' && p && *p == ':'
!(isspace(p[1]) || !p[1] || isspace(p[-1]))) && !(isspace ((unsigned char)p[1]) || !p[1]
|| isspace ((unsigned char)p[-1])))
{ {
p = find_char_unquote (p+1, stopchars, 1); p = find_char_unquote (p+1, stopchars, 1);
} }
@ -1917,8 +1919,8 @@ parse_file_seq (stringp, stopchar, size, strip)
Note that tokens separated by spaces should be treated as separate Note that tokens separated by spaces should be treated as separate
tokens since make doesn't allow path names with spaces */ tokens since make doesn't allow path names with spaces */
if (stopchar == ':') if (stopchar == ':')
while (p != 0 && !isspace(*p) && while (p != 0 && !isspace ((unsigned char)*p) &&
(p[1] == '\\' || p[1] == '/') && isalpha (p[-1])) (p[1] == '\\' || p[1] == '/') && isalpha ((unsigned char)p[-1]))
p = find_char_unquote (p + 1, stopchars, 1); p = find_char_unquote (p + 1, stopchars, 1);
#endif #endif
if (p == 0) if (p == 0)
@ -2000,14 +2002,14 @@ parse_file_seq (stringp, stopchar, size, strip)
while (new1 != 0) while (new1 != 0)
if (new1->name[0] != '(' /* Don't catch "(%)" and suchlike. */ if (new1->name[0] != '(' /* Don't catch "(%)" and suchlike. */
&& new1->name[strlen (new1->name) - 1] == ')' && new1->name[strlen (new1->name) - 1] == ')'
&& index (new1->name, '(') == 0) && strchr (new1->name, '(') == 0)
{ {
/* NEW1 ends with a `)' but does not contain a `('. /* NEW1 ends with a `)' but does not contain a `('.
Look back for an elt with an opening `(' but no closing `)'. */ Look back for an elt with an opening `(' but no closing `)'. */
struct nameseq *n = new1->next, *lastn = new1; struct nameseq *n = new1->next, *lastn = new1;
char *paren = 0; char *paren = 0;
while (n != 0 && (paren = index (n->name, '(')) == 0) while (n != 0 && (paren = strchr (n->name, '(')) == 0)
{ {
lastn = n; lastn = n;
n = n->next; n = n->next;
@ -2288,7 +2290,7 @@ get_next_mword (buffer, delim, startp, length)
} }
default: default:
if (delim && index(delim, c)) if (delim && strchr (delim, c))
wtype = w_static; wtype = w_static;
break; break;
} }
@ -2325,9 +2327,9 @@ get_next_mword (buffer, delim, startp, length)
/* A word CAN include a colon in its drive spec. The drive /* A word CAN include a colon in its drive spec. The drive
spec is allowed either at the beginning of a word, or as part spec is allowed either at the beginning of a word, or as part
of the archive member name, like in "libfoo.a(d:/foo/bar.o)". */ of the archive member name, like in "libfoo.a(d:/foo/bar.o)". */
if (!(p - beg >= 2 && if (!(p - beg >= 2
(*p == '/' || *p == '\\') && isalpha (p[-2]) && && (*p == '/' || *p == '\\') && isalpha ((unsigned char)p[-2])
(p - beg == 2 || p[-3] == '('))) && (p - beg == 2 || p[-3] == '(')))
#endif #endif
goto done_word; goto done_word;
@ -2379,7 +2381,7 @@ get_next_mword (buffer, delim, startp, length)
break; break;
default: default:
if (delim && index(delim, c)) if (delim && strchr (delim, c))
goto done_word; goto done_word;
break; break;
} }
@ -2550,7 +2552,7 @@ tilde_expand (name)
else else
{ {
struct passwd *pwent; struct passwd *pwent;
char *userend = index (name + 1, '/'); char *userend = strchr (name + 1, '/');
if (userend != 0) if (userend != 0)
*userend = '\0'; *userend = '\0';
pwent = getpwnam (name + 1); pwent = getpwnam (name + 1);

View File

@ -744,9 +744,11 @@ notice_finished_file (file)
would have been updated. */ would have been updated. */
if (question_flag || just_print_flag) if (question_flag || just_print_flag)
{
for (i = file->cmds->ncommand_lines; i > 0; --i) for (i = file->cmds->ncommand_lines; i > 0; --i)
if (! (file->cmds->lines_flags[i-1] & COMMANDS_RECURSE)) if (! (file->cmds->lines_flags[i-1] & COMMANDS_RECURSE))
break; break;
}
/* If there were no commands at all, it's always new. */ /* If there were no commands at all, it's always new. */
@ -1232,7 +1234,7 @@ library_search (lib, mtime_ptr)
/* Loop variables for the libpatterns value. */ /* Loop variables for the libpatterns value. */
char *p, *p2; char *p, *p2;
int len; unsigned int len;
char *file, **dp; char *file, **dp;

6
rule.c
View File

@ -108,11 +108,11 @@ count_implicit_rule_limits ()
unsigned int len = strlen (dep->name); unsigned int len = strlen (dep->name);
#ifdef VMS #ifdef VMS
char *p = rindex (dep->name, ']'); char *p = strrchr (dep->name, ']');
#else #else
char *p = rindex (dep->name, '/'); char *p = strrchr (dep->name, '/');
#endif #endif
char *p2 = p != 0 ? index (dep->name, '%') : 0; char *p2 = p != 0 ? strchr (dep->name, '%') : 0;
ndeps++; ndeps++;
if (len > max_pattern_dep_length) if (len > max_pattern_dep_length)

View File

@ -1,3 +1,9 @@
1999-10-15 Paul D. Smith <psmith@gnu.org>
* scripts/variables/MAKEFILES: This was really broken: it didn't
test anything at all, really. Rewrote it, plus added a test for
PR/1394.
1999-10-13 Paul D. Smith <psmith@gnu.org> 1999-10-13 Paul D. Smith <psmith@gnu.org>
* scripts/options/dash-n: Add a test for PR/1379: "-n doesn't * scripts/options/dash-n: Add a test for PR/1379: "-n doesn't

View File

@ -1,3 +1,5 @@
# -*-perl-*-
$description = "This tests the CURDIR varaible."; $description = "This tests the CURDIR varaible.";
$details = "Echo CURDIR both with and without -C. Also ensure overrides work."; $details = "Echo CURDIR both with and without -C. Also ensure overrides work.";

View File

@ -1,37 +1,34 @@
$description = "The following test creates a makefile to test "; # -*-perl-*-
$description = "Test the MAKEFILES variable.";
$makefile2 = &get_tmpfile; $makefile2 = &get_tmpfile;
$makefile3 = &get_tmpfile;
open(MAKEFILE,"> $makefile"); open(MAKEFILE,"> $makefile");
# The Contents of the MAKEFILE ... print MAKEFILE 'all: ; @echo DEFAULT RULE: M2=$(M2) M3=$(M3)', "\n";
print MAKEFILE "MAKEFILES = work/MAKEFILES_variable.mk.2\n\n";
print MAKEFILE "all:\n";
print MAKEFILE "\t\@echo THIS IS THE DEFAULT RULE\n";
# END of Contents of MAKEFILE
close(MAKEFILE); close(MAKEFILE);
open(MAKEFILE,"> $makefile2"); open(MAKEFILE,"> $makefile2");
print MAKEFILE "NDEF:\n"; print MAKEFILE <<EOF;
print MAKEFILE "\t\@echo THIS IS THE RULE FROM MAKEFILE 2\n"; M2 = m2
NDEF: ; \@echo RULE FROM MAKEFILE 2
EOF
close(MAKEFILE); close(MAKEFILE);
&run_make_with_options($makefile,"",&get_logfile);
open(MAKEFILE,"> $makefile3");
print MAKEFILE <<EOF;
M3 = m3
NDEF3: ; \@echo RULE FROM MAKEFILE 3
EOF
close(MAKEFILE);
# Create the answer to what should be produced by this Makefile &run_make_with_options($makefile, "MAKEFILES='$makefile2 $makefile3'",
$answer = "THIS IS THE DEFAULT RULE\n"; &get_logfile);
$answer = "DEFAULT RULE: M2=m2 M3=m3\n";
# COMPARE RESULTS
# In this call to compare output, you should use the call &get_logfile(1)
# to send the name of the last logfile created.
&compare_output($answer,&get_logfile(1)); &compare_output($answer,&get_logfile(1));
# If you wish to stop if the compare fails, then add
# a "|| &error ("abort")" to the
# end of the previous line.
# This tells the test driver that the perl test script executed properly.
1; 1;

View File

@ -878,8 +878,8 @@ try_variable_definition (flocp, line, origin)
char *fake_env[2]; char *fake_env[2];
size_t pathlen = 0; size_t pathlen = 0;
shellbase = rindex (value, '/'); shellbase = strrchr (value, '/');
bslash = rindex (value, '\\'); bslash = strrchr (value, '\\');
if (!shellbase || bslash > shellbase) if (!shellbase || bslash > shellbase)
shellbase = bslash; shellbase = bslash;
if (!shellbase && value[1] == ':') if (!shellbase && value[1] == ':')
@ -987,7 +987,7 @@ print_variable (v, prefix)
fputs (prefix, stdout); fputs (prefix, stdout);
/* Is this a `define'? */ /* Is this a `define'? */
if (v->recursive && index (v->value, '\n') != 0) if (v->recursive && strchr (v->value, '\n') != 0)
printf ("define %s\n%s\nendef\n", v->name, v->value); printf ("define %s\n%s\nendef\n", v->name, v->value);
else else
{ {

View File

@ -76,8 +76,8 @@ opendir (dspec)
{ \ { \
char *tmp; \ char *tmp; \
for (tmp = (str); *tmp != '\0'; tmp++) \ for (tmp = (str); *tmp != '\0'; tmp++) \
if (islower (*tmp)) \ if (islower ((unsigned char)*tmp)) \
*tmp = toupper (*tmp); \ *tmp = toupper ((unsigned char)*tmp); \
} \ } \
while (0) while (0)

View File

@ -78,8 +78,8 @@ copyto (char **to, char **from, char upto, int as_dir)
} }
else else
{ {
if (islower (**from)) if (islower ((unsigned char)**from))
**to = toupper (**from); **to = toupper ((unsigned char)**from);
else else
**to = **from; **to = **from;
} }

View File

@ -402,11 +402,11 @@ selective_vpath_search (path, file, mtime_ptr)
NAME_DPLEN gets the length of the prefix; FILENAME gets the NAME_DPLEN gets the length of the prefix; FILENAME gets the
pointer to the name-within-directory and FLEN is its length. */ pointer to the name-within-directory and FLEN is its length. */
n = rindex (*file, '/'); n = strrchr (*file, '/');
#if defined (WINDOWS32) || defined (__MSDOS__) #if defined (WINDOWS32) || defined (__MSDOS__)
/* We need the rightmost slash or backslash. */ /* We need the rightmost slash or backslash. */
{ {
char *bslash = rindex(*file, '\\'); char *bslash = strrchr(*file, '\\');
if (!n || bslash > n) if (!n || bslash > n)
n = bslash; n = bslash;
} }