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

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

Issue 1417223003: Switch from using 'nacl_main' to 'main' entry point (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 5 years, 1 month 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/subversion/build.sh ('k') | ports/tcl/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/configure b/configure 1 diff --git a/configure b/configure
2 --- a/configure 2 --- a/configure
3 +++ b/configure 3 +++ b/configure
4 @@ -34537,7 +34537,6 @@ $as_echo "$gl_cv_cc_uninitialized_supported" >&6; } 4 @@ -34537,7 +34537,6 @@ $as_echo "$gl_cv_cc_uninitialized_supported" >&6; }
5 -Wswitch \ 5 -Wswitch \
6 -Wswitch-default \ 6 -Wswitch-default \
7 -Wsync-nand \ 7 -Wsync-nand \
8 - -Wsystem-headers \ 8 - -Wsystem-headers \
9 -Wtrampolines \ 9 -Wtrampolines \
10 -Wtrigraphs \ 10 -Wtrigraphs \
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 #include <rmt-command.h> 48 #include <rmt-command.h>
49 @@ -1348,7 +1349,7 @@ static char const *const sort_mode_arg[] = { 49 @@ -1348,7 +1349,7 @@ static char const *const sort_mode_arg[] = {
50 static int sort_mode_flag[] = { 50 static int sort_mode_flag[] = {
51 SAVEDIR_SORT_NONE, 51 SAVEDIR_SORT_NONE,
52 SAVEDIR_SORT_NAME, 52 SAVEDIR_SORT_NAME,
53 - SAVEDIR_SORT_INODE 53 - SAVEDIR_SORT_INODE
54 + SAVEDIR_SORT_FASTREAD 54 + SAVEDIR_SORT_FASTREAD
55 }; 55 };
56 56
57 ARGMATCH_VERIFY (sort_mode_arg, sort_mode_flag); 57 ARGMATCH_VERIFY (sort_mode_arg, sort_mode_flag);
58 @@ -2716,7 +2717,7 @@ more_options (int argc, char **argv)
59
60 /* Main routine for tar. */
61 int
62 -main (int argc, char **argv)
63 +nacl_main (int argc, char **argv)
64 {
65 set_start_time ();
66 set_program_name (argv[0]);
OLDNEW
« no previous file with comments | « ports/subversion/build.sh ('k') | ports/tcl/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698