Commit eb2e23c8a516adc928cc069a48a32c1415af337d

Authored by perry.werneck@gmail.com
1 parent e8d1ea40

Pequenos ajustes na construção da libpw3270.so para teste de empacotamento em redhat

Showing 2 changed files with 12 additions and 4 deletions   Show diff stats
@@ -5,7 +5,7 @@ msgid "" @@ -5,7 +5,7 @@ msgid ""
5 msgstr "" 5 msgstr ""
6 "Project-Id-Version: pw3270 5.0\n" 6 "Project-Id-Version: pw3270 5.0\n"
7 "Report-Msgid-Bugs-To: \n" 7 "Report-Msgid-Bugs-To: \n"
8 -"POT-Creation-Date: 2013-05-03 15:59-0300\n" 8 +"POT-Creation-Date: 2013-05-08 10:42-0300\n"
9 "PO-Revision-Date: 2013-04-23 10:22-0300\n" 9 "PO-Revision-Date: 2013-04-23 10:22-0300\n"
10 "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" 10 "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n"
11 "Language-Team: Português <>\n" 11 "Language-Team: Português <>\n"
@@ -18,6 +18,11 @@ msgstr &quot;&quot; @@ -18,6 +18,11 @@ msgstr &quot;&quot;
18 "X-Poedit-SourceCharset: utf-8\n" 18 "X-Poedit-SourceCharset: utf-8\n"
19 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 19 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
20 20
  21 +#: window.c:283
  22 +#, fuzzy, c-format
  23 +msgid "%s - Disconnected"
  24 +msgstr "_Desconectar"
  25 +
21 #: actions.c:742 actions.c:754 26 #: actions.c:742 actions.c:754
22 #, c-format 27 #, c-format
23 msgid "%s action needs a valid id attribute" 28 msgid "%s action needs a valid id attribute"
@@ -903,7 +908,7 @@ msgstr &quot;Cores diversas&quot; @@ -903,7 +908,7 @@ msgstr &quot;Cores diversas&quot;
903 msgid "Missing ']'" 908 msgid "Missing ']'"
904 msgstr "Faltando ']'" 909 msgstr "Faltando ']'"
905 910
906 -#: window.c:344 911 +#: window.c:367
907 #, c-format 912 #, c-format
908 msgid "Model %d (%s)" 913 msgid "Model %d (%s)"
909 msgstr "Modelo %d (%s)" 914 msgstr "Modelo %d (%s)"
@@ -2043,7 +2048,7 @@ msgstr &quot;Valor de cor inválido ou inesperado: \&quot;%s\&quot;&quot; @@ -2043,7 +2048,7 @@ msgstr &quot;Valor de cor inválido ou inesperado: \&quot;%s\&quot;&quot;
2043 msgid "Unexpected or unknown security status" 2048 msgid "Unexpected or unknown security status"
2044 msgstr "Estado de segurança inesperado ou desconhecido." 2049 msgstr "Estado de segurança inesperado ou desconhecido."
2045 2050
2046 -#: v3270/widget.c:845 2051 +#: v3270/widget.c:847
2047 msgid "" 2052 msgid ""
2048 "Unexpected signature in H3270 object, possible version mismatch in lib3270" 2053 "Unexpected signature in H3270 object, possible version mismatch in lib3270"
2049 msgstr "" 2054 msgstr ""
src/pw3270/Makefile.in
@@ -48,6 +48,9 @@ CONVERT=@CONVERT@ @@ -48,6 +48,9 @@ CONVERT=@CONVERT@
48 WINDRES=@WINDRES@ 48 WINDRES=@WINDRES@
49 LN_S=@LN_S@ 49 LN_S=@LN_S@
50 50
  51 +DLL_FLAGS=@DLL_FLAGS@
  52 +LDFLAGS=@LDFLAGS@
  53 +
51 #---[ Sources ]---------------------------------------------------------------- 54 #---[ Sources ]----------------------------------------------------------------
52 55
53 include common/sources.mak 56 include common/sources.mak
@@ -134,7 +137,7 @@ $(LIBRLS)/@DLLPREFIX@$(PACKAGE_TARNAME)@DLLEXT@: $(LIBRLS)/@DLLPREFIX@$(PACKAGE_ @@ -134,7 +137,7 @@ $(LIBRLS)/@DLLPREFIX@$(PACKAGE_TARNAME)@DLLEXT@: $(LIBRLS)/@DLLPREFIX@$(PACKAGE_
134 $(LIBRLS)/@DLLPREFIX@$(PACKAGE_TARNAME)@DLLEXT@.@VERSION@: $(foreach SRC, $(basename $(LIB_SOURCES)), $(OBJRLS)/$(SRC)$(OBJEXT)) 137 $(LIBRLS)/@DLLPREFIX@$(PACKAGE_TARNAME)@DLLEXT@.@VERSION@: $(foreach SRC, $(basename $(LIB_SOURCES)), $(OBJRLS)/$(SRC)$(OBJEXT))
135 @echo " CCLD `basename $@`" 138 @echo " CCLD `basename $@`"
136 @$(MKDIR) `dirname $@` 139 @$(MKDIR) `dirname $@`
137 - @$(LD) $(DLL_FLAGS) @LDSOFLAGS@ @LDLIBFLAGS@ $(LDFLAGS) -o $@ $^ $(LIBS) $(LIB3270_LIBS) 140 + @$(LD) $(DLL_FLAGS) $(LDFLAGS) @LDSOFLAGS@ @LDLIBFLAGS@ -o $@ $^ $(LIBS) $(LIB3270_LIBS)
138 @$(STRIP) $@ 141 @$(STRIP) $@
139 142
140 #---[ Debug targets ]---------------------------------------------------------- 143 #---[ Debug targets ]----------------------------------------------------------