Commit 11d28310d6f734b421c65afee7ef0a656d8ad5d1
1 parent
8b421a72
Exists in
master
and in
5 other branches
Ajustando dependências da hllapi
Showing
4 changed files
with
8 additions
and
5 deletions
Show diff stats
configure.ac
| ... | ... | @@ -96,7 +96,9 @@ case "$host" in |
| 96 | 96 | |
| 97 | 97 | CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0600" |
| 98 | 98 | LIBS="$LIBS -lws2_32 -lwtsapi32 -lintl -lcomdlg32" |
| 99 | - HLLAPI_LDFLAGS="-static-libstdc++ -static-libgcc" | |
| 99 | + | |
| 100 | + dnl https://stackoverflow.com/questions/13768515/how-to-do-static-linking-of-libwinpthread-1-dll-in-mingw | |
| 101 | + STATIC_LDFLAGS="-static-libstdc++ -static-libgcc" | |
| 100 | 102 | |
| 101 | 103 | AC_CONFIG_FILES(win/makeruntime.sh) |
| 102 | 104 | AC_CONFIG_FILES(win/copydeps.sh) |
| ... | ... | @@ -115,7 +117,7 @@ case "$host" in |
| 115 | 117 | |
| 116 | 118 | AC_SUBST(PROGRAMFILES,$app_cv_programfiles) |
| 117 | 119 | AC_SUBST(WINARCH,$app_cv_winarch) |
| 118 | - AC_SUBST(HLLAPI_LDFLAGS) | |
| 120 | + AC_SUBST(STATIC_LDFLAGS) | |
| 119 | 121 | |
| 120 | 122 | ;; |
| 121 | 123 | ... | ... |
locale/pw3270.pot
| ... | ... | @@ -9,7 +9,7 @@ msgstr "" |
| 9 | 9 | "#-#-#-#-# lib3270.pot (PACKAGE VERSION) #-#-#-#-#\n" |
| 10 | 10 | "Project-Id-Version: PACKAGE VERSION\n" |
| 11 | 11 | "Report-Msgid-Bugs-To: \n" |
| 12 | -"POT-Creation-Date: 2017-07-31 16:15-0300\n" | |
| 12 | +"POT-Creation-Date: 2017-07-31 17:31-0300\n" | |
| 13 | 13 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
| 14 | 14 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
| 15 | 15 | "Language-Team: LANGUAGE <LL@li.org>\n" |
| ... | ... | @@ -20,7 +20,7 @@ msgstr "" |
| 20 | 20 | "#-#-#-#-# pw3270.pot (PACKAGE VERSION) #-#-#-#-#\n" |
| 21 | 21 | "Project-Id-Version: PACKAGE VERSION\n" |
| 22 | 22 | "Report-Msgid-Bugs-To: \n" |
| 23 | -"POT-Creation-Date: 2017-07-31 16:15-0300\n" | |
| 23 | +"POT-Creation-Date: 2017-07-31 17:31-0300\n" | |
| 24 | 24 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
| 25 | 25 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
| 26 | 26 | "Language-Team: LANGUAGE <LL@li.org>\n" | ... | ... |
src/plugins/hllapi/Makefile.in
win/pw3270.nsi.in
| ... | ... | @@ -134,6 +134,7 @@ SubSection "@PACKAGE@" SecMain |
| 134 | 134 | CreateDirectory "$INSTDIR\plugins" |
| 135 | 135 | file "/oname=$INSTDIR\plugins\hllapi.dll" "..\.bin\Release\plugins\hllapi.dll" |
| 136 | 136 | file "/oname=$SYSDIR\libhllapi.dll" "..\.bin\Release\libhllapi.dll.@PACKAGE_VERSION@" |
| 137 | + file "/oname=$SYSDIR\libwinpthread-1.dll" "..\.bin\runtime\libwinpthread-1.dll" | |
| 137 | 138 | |
| 138 | 139 | sectionEnd |
| 139 | 140 | ... | ... |