Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Side by Side Diff: ports/gawk/nacl.patch

Issue 1285953002: Switch devenv to use pkg packages (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@toolchain_install
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ports/gawk/build.sh ('k') | ports/gcc/build.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 diff --git a/Makefile.in b/Makefile.in
2 --- a/Makefile.in
3 +++ b/Makefile.in
4 @@ -472,7 +472,6 @@ SUBDIRS = \
5 awklib \
6 doc \
7 po \
8 - extension \
9 test
10
11 include_HEADERS = gawkapi.h
1 diff --git a/dfa.c b/dfa.c 12 diff --git a/dfa.c b/dfa.c
2 --- a/dfa.c 13 --- a/dfa.c
3 +++ b/dfa.c 14 +++ b/dfa.c
4 @@ -25,6 +25,7 @@ 15 @@ -25,6 +25,7 @@
5 #include <assert.h> 16 #include <assert.h>
6 #include <ctype.h> 17 #include <ctype.h>
7 #include <stdio.h> 18 #include <stdio.h>
8 +#include <stddef.h> 19 +#include <stddef.h>
9 20
10 #ifndef VMS 21 #ifndef VMS
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 + int rtn = ki_fcntl(fd, cmd, ap); 89 + int rtn = ki_fcntl(fd, cmd, ap);
79 + va_end(ap); 90 + va_end(ap);
80 + return rtn; 91 + return rtn;
81 +} 92 +}
82 +#define fcntl nacl_fcntl 93 +#define fcntl nacl_fcntl
83 +#endif 94 +#endif
84 + 95 +
85 char quote = '\''; 96 char quote = '\'';
86 char *defpath = DEFPATH; 97 char *defpath = DEFPATH;
87 char *deflibpath = DEFLIBPATH; 98 char *deflibpath = DEFLIBPATH;
OLDNEW
« no previous file with comments | « ports/gawk/build.sh ('k') | ports/gcc/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698