]> granicus.if.org Git - yasm/commitdiff
* Marked message strings so gettext can find them.
authorpaulbarker <paulbarker@localhost>
Sat, 1 Sep 2007 20:11:11 +0000 (20:11 -0000)
committerpaulbarker <paulbarker@localhost>
Sat, 1 Sep 2007 20:11:11 +0000 (20:11 -0000)
* Updated POTFILES.in

svn path=/branches/multiarch/; revision=1925

modules/preprocs/cpp/cpp-preproc.c
modules/preprocs/nasm/nasm-preproc.c
modules/preprocs/raw/raw-preproc.c
modules/preprocs/yapp/yapp-preproc.c
po/POTFILES.in

index 794766b60f24038db6b39d1a62cf0a39dbbedfe7..a35b2544994d2b32e10e420f1b62354d85fbe3a1 100644 (file)
@@ -140,7 +140,7 @@ cpp_invoke(yasm_preproc_cpp *pp)
 
     pp->f = popen(cmdline, "r");
     if (!pp->f)
-        yasm__fatal("Failed to execute preprocessor");
+        yasm__fatal( N_("Failed to execute preprocessor") );
 
     yasm_xfree(cmdline);
 }
@@ -172,7 +172,7 @@ cpp_preproc_destroy(yasm_preproc *preproc)
 
     if (pp->f) {
         if (pclose(pp->f) != 0)
-            yasm__fatal("Preprocessor exited with failure");
+            yasm__fatal( N_("Preprocessor exited with failure") );
     }
 
     yasm_xfree(pp->filename);
index 22a4096ecb07d92091dfa984c58e505dd7f37388..78993b57af21960f6219103ab1955fd3c2269e4e 100644 (file)
@@ -139,7 +139,7 @@ nasm_preproc_create(const char *in_filename, yasm_linemap *lm,
     if (strcmp(in_filename, "-") != 0) {
         f = fopen(in_filename, "r");
         if (!f)
-            yasm__fatal("Could not open input file");
+            yasm__fatal( N_("Could not open input file") );
     }
     else
         f = stdin;
index 27880d3a6b1eb2420bf9bf6d3f4be5adaced67f1..869cbec4579e1f5046700d3c44c313a17bfd7e71 100644 (file)
@@ -53,7 +53,7 @@ raw_preproc_create(const char *in_filename, yasm_linemap *lm,
     if (strcmp(in_filename, "-") != 0) {
         f = fopen(in_filename, "r");
         if (!f)
-            yasm__fatal("Could not open input file");
+            yasm__fatal( N_("Could not open input file") );
     }
     else
         f = stdin;
index ed16ad574303dbca53123d000edb3c60a0d15da7..e1215a75796e7cbf294a65c10311a3e503131da8 100644 (file)
@@ -250,7 +250,7 @@ yapp_preproc_create(const char *in_filename, yasm_linemap *lm,
     if (strcmp(in_filename, "-") != 0) {
         f = fopen(in_filename, "r");
         if (!f)
-            yasm__fatal("Could not open input file");
+            yasm__fatal( N_("Could not open input file") );
     }
     else
         f = stdin;
index 4dc46a984a878c547ae4a2b8049b686d71a4bddb..34438fa87ee9da4668078cabc7193c762f3b6c9d 100644 (file)
@@ -6,7 +6,6 @@
 
 frontends/yasm/yasm-options.c
 frontends/yasm/yasm.c
-#lc3bid.c
 libyasm/bc-align.c
 libyasm/bc-data.c
 libyasm/bc-incbin.c
@@ -23,10 +22,11 @@ libyasm/insn.c
 libyasm/intnum.c
 libyasm/section.c
 libyasm/symrec.c
+libyasm/valparam.c
 libyasm/value.c
 libyasm/xmalloc.c
-#modules/arch/lc3b/lc3barch.c
-#modules/arch/lc3b/lc3bbc.c
+modules/arch/lc3b/lc3barch.c
+modules/arch/lc3b/lc3bbc.c
 modules/arch/x86/x86arch.c
 modules/arch/x86/x86bc.c
 modules/arch/x86/x86expr.c
@@ -54,5 +54,8 @@ modules/parsers/gas/gas-parser.c
 modules/parsers/gas/gas-token.re
 modules/parsers/nasm/nasm-parse.c
 modules/parsers/nasm/nasm-token.re
+modules/preprocs/cpp/cpp-preproc.c
+modules/preprocs/yapp/yapp-preproc.c
+modules/preprocs/nasm/nasm-preproc.c
 modules/preprocs/nasm/nasm-pp.c
 modules/preprocs/raw/raw-preproc.c