#include <stdlib.h>
#include <string.h>
-#if !defined (_WIN32) && !defined (__WIN32__) && !defined (__MSDOS__)
+#if defined (unix) || defined (__unix) || defined (__unix__) || defined (__APPLE__)
# define __USE_POSIX
#endif
}
-#if defined (_WIN32) || defined (__WIN32__)
-# include <windows.h>
+#if !defined (__PDOS__) && !defined (__MSDOS__)
+# if defined (_WIN32) || defined (__WIN32__)
+# include <windows.h>
static char *func_shell (const char *filename, unsigned long line_no, char *input) {
DWORD dwExitCode;
return lbuf.start;
}
-#else
-# include <sys/wait.h>
-# include <errno.h>
-# include <unistd.h>
+# else
+# include <sys/wait.h>
+# include <errno.h>
+# include <unistd.h>
static char *func_shell (const char *filename, unsigned long line_no, char *input) {
int pipefd[2], pid, status;
return lbuf.start;
}
+# endif
#endif
static struct builtin_function builtin_functions[] ={
{ "error", &func_error },
+
+#if !defined (__PDOS__) && !defined (__MSDOS__)
{ "shell", &func_shell },
+#endif
{ "eval", &func_eval },
{ 0, 0 }
} else if (opt == VAR_SHELL) {
+#if defined (__PDOS__) || defined (__MSDOS__)
+
+ fprintf (stderr, "%s: 'MACRO != value' isn't supported due to OS limitations. Stop.\n");
+ exit (EXIT_FAILURE);
+
+#else
+
char *temp = xstrdup (new_value);
free (new_value);
new_value = variable_expand_line (filename, line_no, func_shell (filename, line_no, temp));
free (temp);
+
+#endif
}
#include <stdlib.h>
#include <string.h>
-#if !defined (_WIN32) && !defined (__WIN32__) && !defined (__MSDOS__)
+#if defined (unix) || defined (__unix) || defined (__unix__) || defined (__APPLE__)
# define __USE_POSIX
#endif
#if defined (_WIN32) || defined (__WIN32__)
const char *os_name = "Windows_NT";
-#elif defined (__PDOS386__)
+#elif defined (__PDOS__)
const char *os_name = "PDOS";
#elif defined (__MSDOS__)
const char *os_name = "MSDOS";
static int doing_inference_rule_commands = 0;
-#if defined (_WIN32) || defined (__WIN32__)
-# include <windows.h>
+#if !defined (__PDOS__) && !defined (__MSDOS__)
+# if defined (_WIN32) || defined (__WIN32__)
+# include <windows.h>
static void pipe_command (const char *filename, unsigned long line_no, char *input, int is_ignoring_errors, const char *name) {
DWORD dwExitCode;
}
}
-#else
-# include <sys/wait.h>
-# include <errno.h>
-# include <unistd.h>
+# else
+# include <sys/wait.h>
+# include <errno.h>
+# include <unistd.h>
static void pipe_command (const char *filename, unsigned long line_no, char *input, int is_ignoring_errors, const char *name) {
int pipefd[2], pid, status;
}
}
+# endif
#endif
static int rule_run_command (const char *filename, unsigned long line_no, const char *name, char *p, char *q) {
printf ("%s\n", new_cmds);
}
- if (should_execute) { pipe_command (filename, line_no, s, is_ignoring_errors, name); }
- free (new_cmds);
+ if (should_execute) {
+
+#if defined (__PDOS__) || defined (__MSDOS__)
+
+ int status = system (s);
+
+ if (!is_ignoring_errors && status) {
+
+ char *space, *p = s;
+
+ if ((space = strchr (p, ' '))) {
+ p = xstrndup (p, space - p);
+ }
+
+ fprintf (stderr, "%s: %s: No such file or directory\n", program_name, p);
+ fprintf (stderr, "%s: *** [%s:%lu: %s] Error %d\n", program_name, filename, line_no, name, status);
+
+ }
+
+#else
+ pipe_command (filename, line_no, s, is_ignoring_errors, name);
+#endif
+ }
+
+ free (new_cmds);
return 0;
}