bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #17381] Compile errors under DJGPP


From: Eli Zaretskii
Subject: [bug #17381] Compile errors under DJGPP
Date: Sat, 12 Aug 2006 15:48:23 +0300
User-agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)

Follow-up Comment #1, bug #17381 (project make):

The following patch should take care of this:

2006-08-12  Eli Zaretskii  <address@hidden>

        * job.h [__MSDOS__]: Use the same prototype for child_execute_job as 
__EMX__
does.


--- job.h~0     2006-02-12 02:16:04.000000000 +0200
+++ job.h       2006-08-12 15:44:06.875000000 +0300
@@ -73,7 +73,7 @@
 extern char **construct_command_argv PARAMS ((char *line, char **restp,
struct file *file, char** batch_file));
 #ifdef VMS
 extern int child_execute_job PARAMS ((char *argv, struct child *child));
-#elif defined(__EMX__)
+#elif defined(__MSDOS__) || defined(__EMX__)
 extern int child_execute_job PARAMS ((int stdin_fd, int stdout_fd, char
**argv, char **envp));
 #else
 extern void child_execute_job PARAMS ((int stdin_fd, int stdout_fd, char
**argv, char **envp));


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=17381>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]