}
+struct if_stack {
+
+ struct if_stack *prev;
+
+ int ignoring;
+ int prev_ignoring;
+ int has_else;
+
+};
+
+static struct if_stack *cur_if_stack = 0;
+
+static void add_if_stack (void) {
+
+ struct if_stack *if_stack = xmalloc (sizeof *if_stack);
+
+ if (cur_if_stack) {
+ if_stack->prev_ignoring = cur_if_stack->ignoring;
+ }
+
+ if_stack->prev = cur_if_stack;
+ cur_if_stack = if_stack;
+
+}
+
static int include_makefile (const char *filename, int bsd) {
+ struct if_stack *saved_if_stack = cur_if_stack;
char *path, *new_name;
+
unsigned long i;
+ cur_if_stack = 0;
if (bsd) {
}
if (!read_makefile (filename)) {
+
+ cur_if_stack = saved_if_stack;
return 0;
+
}
for (i = 0; i < state->nb_include_paths; i++) {
if (!read_makefile (new_name)) {
+ cur_if_stack = saved_if_stack;
+
free (new_name);
return 0;
}
-struct if_stack {
-
- struct if_stack *prev;
-
- int ignoring;
- int prev_ignoring;
- int has_else;
-
-};
-
-static struct if_stack *cur_if_stack = 0;
-
-static void add_if_stack (void) {
-
- struct if_stack *if_stack = xmalloc (sizeof *if_stack);
-
- if (cur_if_stack) {
- if_stack->prev_ignoring = cur_if_stack->ignoring;
- }
-
- if_stack->prev = cur_if_stack;
- cur_if_stack = if_stack;
-
-}
-
static char *skip_whitespace (char *p) {
while (isspace ((int) *p)) {
goto is_command;
}
- if (strncmp (p, "else", 4) == 0) {
+ if (strncmp (p, ".else", 5) == 0 || strncmp (p, "else", 4) == 0) {
- p += 4;
+ if (*p == '.') {
+ p = skip_whitespace (p + 5);
+ } else {
+ p = skip_whitespace (p + 4);
+ }
if (!cur_if_stack) {
}
- p = skip_whitespace (p);
-
if (strncmp (p, "ifeq", 4) == 0 || strncmp (p, "ifneq", 5) == 0 || strncmp (p, "ifdef", 5) == 0 || strncmp (p, "ifndef", 6) == 0) {
after_else = 1;
} else {
if (isspace ((int) *p)) {
p = skip_whitespace (p);
+ } else if (*p == '"' || *p == '\'') {
+
+ fprintf (stderr, "%s: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, ifneq ? "ifneq" : "ifeq");
+ exit (EXIT_FAILURE);
+
}
if (*p == '"' || *p == '\'') {
}
p = skip_whitespace (p);
- fprintf (stderr, "%s\n", p);
if (*p || !arg1 || !arg2) {
fprintf (stderr, "%s: extraneous text after '%s' directive\n", program_name, ifneq ? "ifneq" : "ifeq");
}
- if (strncmp (p, "ifdef", 5) == 0 || strncmp (p, "ifndef", 6) == 0) {
+ if (strncmp (p, ".ifdef", 6) == 0 || strncmp (p, "ifdef", 5) == 0 || strncmp (p, ".ifndef", 7) == 0 || strncmp (p, "ifndef", 6) == 0) {
struct variable *var;
int ifndef;
+ if (*p == '.') {
+ p++;
+ }
+
if (strncmp (p, "ifdef", 5) == 0) {
ifndef = 0;
}
- if (strncmp (p, "endif", 5) == 0) {
+ if (strncmp (p, ".endif", 6) == 0 || strncmp (p, "endif", 5) == 0) {
- p = skip_whitespace (p + 5);
+ if (*p == '.') {
+ p = skip_whitespace (p + 6);
+ } else {
+ p = skip_whitespace (p + 5);
+ }
if (!cur_if_stack) {
}
- if (strncmp (p, ".include", 8) == 0 || strncmp (p, "include", 7) == 0) {
+ if (strncmp (p, ".include", 8) == 0 || (strncmp (p, "include", 7) == 0 && (isspace ((int) p[7]) || p[7] == '\0'))) {
int bsd = 0;
for (ns = filenames; ns; ns = ns->next) {
- if ((ns->name[0] == '.') && (strchr (ns->name, '\\') == 0) && (strchr (ns->name, '/') == 0)) {
+ if ((ns->name[0] == '.') && strchr (ns->name, '\\') == 0 && strchr (ns->name, '/') == 0) {
continue;
}