diff -Nru libsoup2.4-2.54.0.1/build/win32/detectenv-msvc.mak libsoup2.4-2.54.1/build/win32/detectenv-msvc.mak --- libsoup2.4-2.54.0.1/build/win32/detectenv-msvc.mak 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/detectenv-msvc.mak 2016-04-25 15:17:18.000000000 +0000 @@ -1,3 +1,8 @@ +# Common NMake Makefile module for checking the build environment +# This can be copied from $(glib_srcroot)\build\win32 for GNOME items +# that support MSVC builds and introspection under MSVC, and can be used +# for building test programs as well. + # Check to see we are configured to build with MSVC (MSDEVDIR, MSVCDIR or # VCINSTALLDIR) or with the MS Platform SDK (MSSDK or WindowsSDKDir) !if !defined(VCINSTALLDIR) && !defined(WINDOWSSDKDIR) @@ -50,14 +55,18 @@ !endif VALID_CFGSET = FALSE -!if "$(CFG)" == "release" || "$(CFG)" == "debug" +!if "$(CFG)" == "release" || "$(CFG)" == "debug" || "$(CFG)" == "Release" || "$(CFG)" == "Debug" VALID_CFGSET = TRUE !endif -!if "$(CFG)" == "release" -CFLAGS_ADD = /MD /O2 +# We want debugging symbols logged for all builds, +# using .pdb files for release builds +CFLAGS_BASE = /Zi + +!if "$(CFG)" == "release" || "$(CFG)" == "Release" +CFLAGS_ADD = /MD /O2 $(CFLAGS_BASE) !else -CFLAGS_ADD = /MDd /Od /Zi +CFLAGS_ADD = /MDd /Od $(CFLAGS_BASE) !endif !if "$(PLAT)" == "x64" diff -Nru libsoup2.4-2.54.0.1/build/win32/introspection-msvc.mak libsoup2.4-2.54.1/build/win32/introspection-msvc.mak --- libsoup2.4-2.54.0.1/build/win32/introspection-msvc.mak 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/introspection-msvc.mak 2016-04-25 15:17:18.000000000 +0000 @@ -1,17 +1,34 @@ -# Common Utility NMake Makefile Template -# Used to Generate Introspection files for various Projects +# Common NMake Makefile module for checking the build environment is sane +# for building introspection files under MSVC/NMake. +# This can be copied from $(gi_srcroot)\build\win32 for GNOME items +# that support MSVC builds and introspection under MSVC. -# Can Override with env vars as needed +# Can override with env vars as needed # You will need to have built gobject-introspection for this to work. # Change or pass in or set the following to suit your environment -!if "$(BASEDIR)" == "" -BASEDIR = ..\..\..\vs$(VSVER)\$(PLAT) +!if "$(PREFIX)" == "" +PREFIX = ..\..\..\vs$(VSVER)\$(PLAT) +!endif + +!if ![setlocal] && \ + ![set PFX=$(PREFIX)] && \ + ![for %P in (%PFX%) do @echo PREFIX_FULL=%~dpnfP > pfx.x] +!endif +!include pfx.x + +!if "$(PKG_CONFIG_PATH)" == "" +PKG_CONFIG_PATH=$(PREFIX_FULL)\lib\pkgconfig +!else +PKG_CONFIG_PATH=$(PREFIX_FULL)\lib\pkgconfig;$(PKG_CONFIG_PATH) +!endif + +!if ![del $(ERRNUL) /q/f pfx.x] !endif # Note: The PYTHON must be the Python release series that was used to build # the GObject-introspection scanner Python module! -# Either having python.exe your PATH will work or passing in +# Either having python.exe your PATH will work or passing in # PYTHON= will do # This is required, and gobject-introspection needs to be built @@ -20,14 +37,19 @@ PYTHON=python !endif +# Path to the pkg-config tool, if not already in the PATH +!if "$(PKG_CONFIG)" == "" +PKG_CONFIG=pkg-config +!endif + # Don't change anything following this line! GIR_SUBDIR = share\gir-1.0 GIR_TYPELIBDIR = lib\girepository-1.0 -G_IR_SCANNER = $(BASEDIR)\bin\g-ir-scanner -G_IR_COMPILER = $(BASEDIR)\bin\g-ir-compiler.exe -G_IR_INCLUDEDIR = $(BASEDIR)\$(GIR_SUBDIR) -G_IR_TYPELIBDIR = $(BASEDIR)\$(GIR_TYPELIBDIR) +G_IR_SCANNER = $(PREFIX)\bin\g-ir-scanner +G_IR_COMPILER = $(PREFIX)\bin\g-ir-compiler.exe +G_IR_INCLUDEDIR = $(PREFIX)\$(GIR_SUBDIR) +G_IR_TYPELIBDIR = $(PREFIX)\$(GIR_TYPELIBDIR) VALID_PKG_CONFIG_PATH = FALSE @@ -38,7 +60,8 @@ BUILD_INTROSPECTION = TRUE -!if ![pkg-config --print-errors --errors-to-stdout $(CHECK_PACKAGE) > pkgconfig.x] \ +!if ![set PKG_CONFIG_PATH=$(PKG_CONFIG_PATH)] \ + && ![$(PKG_CONFIG) --print-errors --errors-to-stdout $(CHECK_PACKAGE) > pkgconfig.x] \ && ![setlocal] \ && ![set file="pkgconfig.x"] \ && ![FOR %A IN (%file%) DO @echo PKG_CHECK_SIZE=%~zA > pkgconfig.chksize] \ @@ -56,7 +79,7 @@ !endif VALID_CFGSET = FALSE -!if "$(CFG)" == "release" || "$(CFG)" == "debug" +!if "$(CFG)" == "release" || "$(CFG)" == "debug" || "$(CFG)" == "Release" || "$(CFG)" == "Debug" VALID_CFGSET = TRUE !endif diff -Nru libsoup2.4-2.54.0.1/build/win32/soup-introspection-msvc.mak libsoup2.4-2.54.1/build/win32/soup-introspection-msvc.mak --- libsoup2.4-2.54.0.1/build/win32/soup-introspection-msvc.mak 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/soup-introspection-msvc.mak 2016-04-25 15:17:18.000000000 +0000 @@ -21,10 +21,10 @@ @-copy /b SoupGNOME-$(APIVERSION).typelib $(G_IR_TYPELIBDIR) setbuildenv: - @set PYTHONPATH=$(BASEDIR)\lib\gobject-introspection - @set PATH=vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(BASEDIR)\bin;$(PATH) + @set PYTHONPATH=$(PREFIX)\lib\gobject-introspection + @set PATH=vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(PREFIX)\bin;$(PATH) @set PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) - @set LIB=vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(BASEDIR)\lib;$(LIB) + @set LIB=vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(PREFIX)\lib;$(LIB) !include introspection.body.mak diff -Nru libsoup2.4-2.54.0.1/build/win32/vs10/libsoup.sln libsoup2.4-2.54.1/build/win32/vs10/libsoup.sln --- libsoup2.4-2.54.0.1/build/win32/vs10/libsoup.sln 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/vs10/libsoup.sln 2016-04-25 15:17:18.000000000 +0000 @@ -19,6 +19,10 @@ Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 + Debug_MIT_GSSAPI|Win32 = Debug_MIT_GSSAPI|Win32 + Debug_MIT_GSSAPI|x64 = Debug_MIT_GSSAPI|x64 + Release_MIT_GSSAPI|Win32 = Release_MIT_GSSAPI|Win32 + Release_MIT_GSSAPI|x64 = Release_MIT_GSSAPI|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug|Win32.ActiveCfg = Debug|Win32 @@ -29,6 +33,14 @@ {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release|Win32.Build.0 = Release|Win32 {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release|x64.ActiveCfg = Release|x64 {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release|x64.Build.0 = Release|x64 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug_MIT_GSSAPI|Win32 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug_MIT_GSSAPI|Win32 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug_MIT_GSSAPI|x64 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug_MIT_GSSAPI|x64.Build.0 = Debug_MIT_GSSAPI|x64 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release_MIT_GSSAPI|Win32 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release_MIT_GSSAPI|Win32.Build.0 = Release_MIT_GSSAPI|Win32 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release_MIT_GSSAPI|x64.ActiveCfg = Release_MIT_GSSAPI|x64 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release_MIT_GSSAPI|x64.Build.0 = Release_MIT_GSSAPI|x64 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug|Win32.ActiveCfg = Debug|Win32 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug|Win32.Build.0 = Debug|Win32 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug|x64.ActiveCfg = Debug|x64 @@ -37,6 +49,14 @@ {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release|Win32.Build.0 = Release|Win32 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release|x64.ActiveCfg = Release|x64 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release|x64.Build.0 = Release|x64 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug|Win32.ActiveCfg = Debug|Win32 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug|Win32.Build.0 = Debug|Win32 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug|x64.ActiveCfg = Debug|x64 @@ -45,6 +65,14 @@ {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release|Win32.Build.0 = Release|Win32 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release|x64.ActiveCfg = Release|x64 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release|x64.Build.0 = Release|x64 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug|Win32.ActiveCfg = Debug|Win32 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug|Win32.Build.0 = Debug|Win32 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug|x64.ActiveCfg = Debug|x64 @@ -53,6 +81,14 @@ {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release|Win32.Build.0 = Release|Win32 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release|x64.ActiveCfg = Release|x64 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release|x64.Build.0 = Release|x64 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug|Win32.ActiveCfg = Debug|Win32 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug|Win32.Build.0 = Debug|Win32 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug|x64.ActiveCfg = Debug|x64 @@ -61,6 +97,14 @@ {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release|Win32.Build.0 = Release|Win32 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release|x64.ActiveCfg = Release|x64 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release|x64.Build.0 = Release|x64 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug|Win32.ActiveCfg = Debug|Win32 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug|Win32.Build.0 = Debug|Win32 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug|x64.ActiveCfg = Debug|x64 @@ -69,6 +113,14 @@ {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release|Win32.Build.0 = Release|Win32 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release|x64.ActiveCfg = Release|x64 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release|x64.Build.0 = Release|x64 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff -Nru libsoup2.4-2.54.0.1/build/win32/vs10/soup-dll-build-defines.props libsoup2.4-2.54.1/build/win32/vs10/soup-dll-build-defines.props --- libsoup2.4-2.54.0.1/build/win32/vs10/soup-dll-build-defines.props 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/vs10/soup-dll-build-defines.props 2016-04-25 15:17:18.000000000 +0000 @@ -5,7 +5,11 @@ LIBSOUP_COMPILATION;DLL_EXPORT;G_LOG_DOMAIN="libsoup" + LIBSOUP_HAVE_GSSAPI libxml2.lib;sqlite3.lib;intl.lib;ws2_32.lib + gssapi + 32.lib + 64.lib <_PropertySheetDisplayName>soupdllbuilddefinesprops diff -Nru libsoup2.4-2.54.0.1/build/win32/vs10/soup-gen-srcs.props libsoup2.4-2.54.1/build/win32/vs10/soup-gen-srcs.props --- libsoup2.4-2.54.0.1/build/win32/vs10/soup-gen-srcs.props 2016-03-23 12:17:05.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/vs10/soup-gen-srcs.props 2016-04-26 12:36:14.000000000 +0000 @@ -10,7 +10,7 @@ $(PythonPath)\python.exe ..\replace.py --action=replace-var --input=..\..\..\libsoup\soup-version.h.tmp1 --output=..\..\..\libsoup\soup-version.h.tmp2 --var=SOUP_MINOR_VERSION --outstring=54 -$(PythonPath)\python.exe ..\replace.py --action=replace-var --input=..\..\..\libsoup\soup-version.h.tmp2 --output=..\..\..\libsoup\soup-version.h --var=SOUP_MICRO_VERSION --outstring=0 +$(PythonPath)\python.exe ..\replace.py --action=replace-var --input=..\..\..\libsoup\soup-version.h.tmp2 --output=..\..\..\libsoup\soup-version.h --var=SOUP_MICRO_VERSION --outstring=1 del ..\..\..\libsoup\soup-version.h.tmp1 ..\..\..\libsoup\soup-version.h.tmp2 diff -Nru libsoup2.4-2.54.0.1/build/win32/vs10/soup.vcxprojin libsoup2.4-2.54.1/build/win32/vs10/soup.vcxprojin --- libsoup2.4-2.54.0.1/build/win32/vs10/soup.vcxprojin 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/vs10/soup.vcxprojin 2016-04-25 15:17:18.000000000 +0000 @@ -17,6 +17,22 @@ Release x64 + + Debug_MIT_GSSAPI + Win32 + + + Debug_MIT_GSSAPI + x64 + + + Release_MIT_GSSAPI + Win32 + + + Release_MIT_GSSAPI + x64 + {D83A3162-B14C-459C-AF81-15BBFA90240D} @@ -24,36 +40,62 @@ Win32Proj + + DynamicLibrary + Unicode + v100 + + + DynamicLibrary + Unicode + v100 + DynamicLibrary Unicode v100 true - + DynamicLibrary Unicode v100 + true - + + DynamicLibrary + Unicode + v100 + + + DynamicLibrary + Unicode + v100 + + DynamicLibrary Unicode v100 true - + DynamicLibrary Unicode v100 + true - + - + + + + + @@ -61,23 +103,31 @@ - + + + + + + + + + + + + + - - true - - - false - - - true - - - false - + true + true + false + false + trueDebug\$(Platform)\bin\ + trueDebug\$(Platform)\bin\ + falseRelease\$(Platform)\bin\ + falseRelease\$(Platform)\bin\ Disabled @@ -96,6 +146,24 @@ MachineX86 + + + Disabled + _DEBUG;$(SoupBuildDefines);$(SoupMITGSSAPIBuildDefines);%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + Level3 + EditAndContinue + + + $(SoupExtraDepLibs);$(MITGSSAPILibBaseName)$(MITGSSAPILibNameSuffixX86);%(AdditionalDependencies) + true + Windows + MachineX86 + + MaxSpeed @@ -116,6 +184,26 @@ MachineX86 + + + MaxSpeed + true + $(SoupBuildDefines);$(SoupMITGSSAPIBuildDefines);%(PreprocessorDefinitions) + MultiThreadedDLL + true + + Level3 + ProgramDatabase + + + $(SoupExtraDepLibs);$(MITGSSAPILibBaseName)$(MITGSSAPILibNameSuffixX86);%(AdditionalDependencies) + true + Windows + true + true + MachineX86 + + X64 @@ -137,6 +225,27 @@ MachineX64 + + + X64 + + + Disabled + _DEBUG;$(SoupBuildDefines);$(SoupMITGSSAPIBuildDefines);%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + Level3 + ProgramDatabase + + + $(SoupExtraDepLibs);$(MITGSSAPILibBaseName)$(MITGSSAPILibNameSuffixX64);%(AdditionalDependencies) + true + Windows + MachineX64 + + X64 @@ -160,6 +269,29 @@ MachineX64 + + + X64 + + + MaxSpeed + true + $(SoupBuildDefines);$(SoupMITGSSAPIBuildDefines);%(PreprocessorDefinitions) + MultiThreadedDLL + true + + Level3 + ProgramDatabase + + + $(SoupExtraDepLibs);$(MITGSSAPILibBaseName)$(MITGSSAPILibNameSuffixX64);%(AdditionalDependencies) + true + Windows + true + true + MachineX64 + + #include "soup.vs10.sourcefiles" @@ -177,6 +309,18 @@ Copying config.h from config.h.win32... $(CopyConfigH) ..\..\..\config.h;%(Outputs) + Copying config.h from config.h.win32... + $(CopyConfigH) + ..\..\..\config.h;%(Outputs) + Copying config.h from config.h.win32... + $(CopyConfigH) + ..\..\..\config.h;%(Outputs) + Copying config.h from config.h.win32... + $(CopyConfigH) + ..\..\..\config.h;%(Outputs) + Copying config.h from config.h.win32... + $(CopyConfigH) + ..\..\..\config.h;%(Outputs) Generating tld_data.inc... @@ -191,6 +335,18 @@ Generating tld_data.inc... $(GenTldDataInc) ..\..\..\libsoup\tld_data.inc;%(Outputs) + Generating tld_data.inc... + $(GenTldDataInc) + ..\..\..\libsoup\tld_data.inc;%(Outputs) + Generating tld_data.inc... + $(GenTldDataInc) + ..\..\..\libsoup\tld_data.inc;%(Outputs) + Generating tld_data.inc... + $(GenTldDataInc) + ..\..\..\libsoup\tld_data.inc;%(Outputs) + Generating tld_data.inc... + $(GenTldDataInc) + ..\..\..\libsoup\tld_data.inc;%(Outputs) Generating soup-version.h... @@ -205,6 +361,18 @@ Generating soup-version.h... $(GenSoupVersionH) ..\..\..\libsoup\soup-version.h;%(Outputs) + Generating soup-version.h... + $(GenSoupVersionH) + ..\..\..\libsoup\soup-version.h;%(Outputs) + Generating soup-version.h... + $(GenSoupVersionH) + ..\..\..\libsoup\soup-version.h;%(Outputs) + Generating soup-version.h... + $(GenSoupVersionH) + ..\..\..\libsoup\soup-version.h;%(Outputs) + Generating soup-version.h... + $(GenSoupVersionH) + ..\..\..\libsoup\soup-version.h;%(Outputs) diff -Nru libsoup2.4-2.54.0.1/build/win32/vs9/libsoup.sln libsoup2.4-2.54.1/build/win32/vs9/libsoup.sln --- libsoup2.4-2.54.0.1/build/win32/vs9/libsoup.sln 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/vs9/libsoup.sln 2016-04-25 15:17:18.000000000 +0000 @@ -38,6 +38,10 @@ Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 + Debug_MIT_GSSAPI|Win32 = Debug_MIT_GSSAPI|Win32 + Debug_MIT_GSSAPI|x64 = Debug_MIT_GSSAPI|x64 + Release_MIT_GSSAPI|Win32 = Release_MIT_GSSAPI|Win32 + Release_MIT_GSSAPI|x64 = Release_MIT_GSSAPI|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug|Win32.ActiveCfg = Debug|Win32 @@ -48,6 +52,14 @@ {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release|Win32.Build.0 = Release|Win32 {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release|x64.ActiveCfg = Release|x64 {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release|x64.Build.0 = Release|x64 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug_MIT_GSSAPI|Win32 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug_MIT_GSSAPI|Win32 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug_MIT_GSSAPI|x64 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Debug_MIT_GSSAPI|x64.Build.0 = Debug_MIT_GSSAPI|x64 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release_MIT_GSSAPI|Win32 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release_MIT_GSSAPI|Win32.Build.0 = Release_MIT_GSSAPI|Win32 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release_MIT_GSSAPI|x64.ActiveCfg = Release_MIT_GSSAPI|x64 + {D83A3162-B14C-459C-AF81-15BBFA90240D}.Release_MIT_GSSAPI|x64.Build.0 = Release_MIT_GSSAPI|x64 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug|Win32.ActiveCfg = Debug|Win32 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug|Win32.Build.0 = Debug|Win32 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug|x64.ActiveCfg = Debug|x64 @@ -56,6 +68,14 @@ {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release|Win32.Build.0 = Release|Win32 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release|x64.ActiveCfg = Release|x64 {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release|x64.Build.0 = Release|x64 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {8C88A385-28C8-4B30-91A4-FBA381A5A46F}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug|Win32.ActiveCfg = Debug|Win32 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug|Win32.Build.0 = Debug|Win32 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug|x64.ActiveCfg = Debug|x64 @@ -64,6 +84,14 @@ {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release|Win32.Build.0 = Release|Win32 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release|x64.ActiveCfg = Release|x64 {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release|x64.Build.0 = Release|x64 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {B24831C4-B8F2-41D6-AAF4-12192F71C623}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug|Win32.ActiveCfg = Debug|Win32 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug|Win32.Build.0 = Debug|Win32 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug|x64.ActiveCfg = Debug|x64 @@ -72,6 +100,14 @@ {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release|Win32.Build.0 = Release|Win32 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release|x64.ActiveCfg = Release|x64 {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release|x64.Build.0 = Release|x64 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {80DC062E-2146-4CE8-A448-FD2205AB2CA4}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug|Win32.ActiveCfg = Debug|Win32 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug|Win32.Build.0 = Debug|Win32 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug|x64.ActiveCfg = Debug|x64 @@ -80,6 +116,14 @@ {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release|Win32.Build.0 = Release|Win32 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release|x64.ActiveCfg = Release|x64 {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release|x64.Build.0 = Release|x64 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {3AD0CB92-EE38-425E-83CB-E7B1CB1D305E}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug|Win32.ActiveCfg = Debug|Win32 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug|Win32.Build.0 = Debug|Win32 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug|x64.ActiveCfg = Debug|x64 @@ -88,6 +132,14 @@ {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release|Win32.Build.0 = Release|Win32 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release|x64.ActiveCfg = Release|x64 {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release|x64.Build.0 = Release|x64 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug_MIT_GSSAPI|Win32.ActiveCfg = Debug|Win32 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug_MIT_GSSAPI|Win32.Build.0 = Debug|Win32 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug_MIT_GSSAPI|x64.ActiveCfg = Debug|x64 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Debug_MIT_GSSAPI|x64.Build.0 = Debug|x64 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release_MIT_GSSAPI|Win32.ActiveCfg = Release|Win32 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release_MIT_GSSAPI|Win32.Build.0 = Release|Win32 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release_MIT_GSSAPI|x64.ActiveCfg = Release|x64 + {E0DCF460-914F-46F9-94D6-86D456CB53E9}.Release_MIT_GSSAPI|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff -Nru libsoup2.4-2.54.0.1/build/win32/vs9/soup-dll-build-defines.vsprops libsoup2.4-2.54.1/build/win32/vs9/soup-dll-build-defines.vsprops --- libsoup2.4-2.54.0.1/build/win32/vs9/soup-dll-build-defines.vsprops 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/vs9/soup-dll-build-defines.vsprops 2016-04-25 15:17:18.000000000 +0000 @@ -19,4 +19,20 @@ Name="SoupExtraDepLibs" Value="libxml2.lib sqlite3.lib intl.lib ws2_32.lib" /> + + + + diff -Nru libsoup2.4-2.54.0.1/build/win32/vs9/soup-gen-srcs.vsprops libsoup2.4-2.54.1/build/win32/vs9/soup-gen-srcs.vsprops --- libsoup2.4-2.54.0.1/build/win32/vs9/soup-gen-srcs.vsprops 2016-03-23 12:17:04.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/vs9/soup-gen-srcs.vsprops 2016-04-26 12:36:14.000000000 +0000 @@ -14,7 +14,7 @@ Value=" $(PythonPath)\python.exe ..\replace.py --action=replace-var --input=..\..\..\libsoup\soup-version.h.in --output=..\..\..\libsoup\soup-version.h.tmp1 --var=SOUP_MAJOR_VERSION --outstring=2 $(PythonPath)\python.exe ..\replace.py --action=replace-var --input=..\..\..\libsoup\soup-version.h.tmp1 --output=..\..\..\libsoup\soup-version.h.tmp2 --var=SOUP_MINOR_VERSION --outstring=54 -$(PythonPath)\python.exe ..\replace.py --action=replace-var --input=..\..\..\libsoup\soup-version.h.tmp2 --output=..\..\..\libsoup\soup-version.h --var=SOUP_MICRO_VERSION --outstring=0 +$(PythonPath)\python.exe ..\replace.py --action=replace-var --input=..\..\..\libsoup\soup-version.h.tmp2 --output=..\..\..\libsoup\soup-version.h --var=SOUP_MICRO_VERSION --outstring=1 del ..\..\..\libsoup\soup-version.h.tmp1 ..\..\..\libsoup\soup-version.h.tmp2 " /> diff -Nru libsoup2.4-2.54.0.1/build/win32/vs9/soup.vcprojin libsoup2.4-2.54.1/build/win32/vs9/soup.vcprojin --- libsoup2.4-2.54.0.1/build/win32/vs9/soup.vcprojin 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/build/win32/vs9/soup.vcprojin 2016-04-25 15:17:18.000000000 +0000 @@ -46,6 +46,33 @@ /> + + + + + + + + + + + + + + + + + + @@ -161,21 +283,33 @@ > + + + + + + + + + + + + diff -Nru libsoup2.4-2.54.0.1/config.h.win32 libsoup2.4-2.54.1/config.h.win32 --- libsoup2.4-2.54.0.1/config.h.win32 2016-03-23 12:17:04.000000000 +0000 +++ libsoup2.4-2.54.1/config.h.win32 2016-04-26 12:36:14.000000000 +0000 @@ -65,6 +65,10 @@ #defin HAVE_UNISTD_H 1 #endif +/* Whether or not GSSAPI libs are available */ +/* Note: This is activated in the projects when the appropriate config is selected */ +/* #undef LIBSOUP_HAVE_GSSAPI */ + /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #define LT_OBJDIR ".libs/" @@ -83,7 +87,7 @@ #define PACKAGE_NAME "libsoup" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "libsoup 2.54.0.1" +#define PACKAGE_STRING "libsoup 2.54.1" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "libsoup" @@ -92,7 +96,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "2.54.0.1" +#define PACKAGE_VERSION "2.54.1" /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 diff -Nru libsoup2.4-2.54.0.1/config.h.win32.in libsoup2.4-2.54.1/config.h.win32.in --- libsoup2.4-2.54.0.1/config.h.win32.in 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/config.h.win32.in 2016-04-25 15:17:18.000000000 +0000 @@ -65,6 +65,10 @@ #defin HAVE_UNISTD_H 1 #endif +/* Whether or not GSSAPI libs are available */ +/* Note: This is activated in the projects when the appropriate config is selected */ +/* #undef LIBSOUP_HAVE_GSSAPI */ + /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #define LT_OBJDIR ".libs/" diff -Nru libsoup2.4-2.54.0.1/configure libsoup2.4-2.54.1/configure --- libsoup2.4-2.54.0.1/configure 2016-03-23 12:17:02.000000000 +0000 +++ libsoup2.4-2.54.1/configure 2016-04-26 12:36:11.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for libsoup 2.54.0.1. +# Generated by GNU Autoconf 2.69 for libsoup 2.54.1. # # Report bugs to . # @@ -651,8 +651,8 @@ # Identity of this package. PACKAGE_NAME='libsoup' PACKAGE_TARNAME='libsoup' -PACKAGE_VERSION='2.54.0.1' -PACKAGE_STRING='libsoup 2.54.0.1' +PACKAGE_VERSION='2.54.1' +PACKAGE_STRING='libsoup 2.54.1' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=libsoup' PACKAGE_URL='' @@ -1538,7 +1538,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures libsoup 2.54.0.1 to adapt to many kinds of systems. +\`configure' configures libsoup 2.54.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1608,7 +1608,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of libsoup 2.54.0.1:";; + short | recursive ) echo "Configuration of libsoup 2.54.1:";; esac cat <<\_ACEOF @@ -1761,7 +1761,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -libsoup configure 2.54.0.1 +libsoup configure 2.54.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2039,7 +2039,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by libsoup $as_me 2.54.0.1, which was +It was created by libsoup $as_me 2.54.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2905,7 +2905,7 @@ # Define the identity of the package. PACKAGE='libsoup' - VERSION='2.54.0.1' + VERSION='2.54.1' cat >>confdefs.h <<_ACEOF @@ -3072,7 +3072,7 @@ SOUP_MAJOR_VERSION=2 SOUP_MINOR_VERSION=54 -SOUP_MICRO_VERSION=0 +SOUP_MICRO_VERSION=1 @@ -3081,10 +3081,10 @@ # Increment on interface addition. Reset on removal. -SOUP_AGE=7 +SOUP_AGE=8 # Increment on interface add, remove, or change. -SOUP_CURRENT=8 +SOUP_CURRENT=9 # Increment on source change. Reset when CURRENT changes. SOUP_REVISION=0 @@ -14216,6 +14216,9 @@ +if test "$found_introspection" != "yes" -a "$enable_vala" = ""; then + enable_vala=no +fi # Extract the first word of "valac", so it can be a program name with args. set dummy valac; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -15200,7 +15203,7 @@ fi else - if test "$with_gssapi" == "yes"; then + if test "$with_gssapi" = "yes"; then as_fn_error $? "GSSAPI support requested but failed to found krb5-config. Try to set KRB5_CONFIG." "$LINENO" 5 fi fi @@ -15882,7 +15885,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by libsoup $as_me 2.54.0.1, which was +This file was extended by libsoup $as_me 2.54.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -15948,7 +15951,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -libsoup config.status 2.54.0.1 +libsoup config.status 2.54.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru libsoup2.4-2.54.0.1/configure.ac libsoup2.4-2.54.1/configure.ac --- libsoup2.4-2.54.0.1/configure.ac 2016-03-23 12:14:18.000000000 +0000 +++ libsoup2.4-2.54.1/configure.ac 2016-04-25 20:30:33.000000000 +0000 @@ -4,11 +4,10 @@ m4_define([soup_major_version], [2]) m4_define([soup_minor_version], [54]) -m4_define([soup_micro_version], [0]) -m4_define([soup_nano_version], [1]) +m4_define([soup_micro_version], [1]) AC_PREREQ(2.63) -AC_INIT([libsoup],[soup_major_version.soup_minor_version.soup_micro_version.soup_nano_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=libsoup]) +AC_INIT([libsoup],[soup_major_version.soup_minor_version.soup_micro_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=libsoup]) AC_CONFIG_SRCDIR([libsoup-2.4.pc.in]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) @@ -29,10 +28,10 @@ AC_SUBST(SOUP_API_VERSION) # Increment on interface addition. Reset on removal. -SOUP_AGE=7 +SOUP_AGE=8 # Increment on interface add, remove, or change. -SOUP_CURRENT=8 +SOUP_CURRENT=9 # Increment on source change. Reset when CURRENT changes. SOUP_REVISION=0 @@ -167,6 +166,9 @@ dnl ***************************** GOBJECT_INTROSPECTION_CHECK([0.9.5]) +if test "$found_introspection" != "yes" -a "$enable_vala" = ""; then + enable_vala=no +fi VAPIGEN_CHECK() AC_MSG_CHECKING([for glib-networking (glib TLS implementation)]) @@ -344,7 +346,7 @@ AC_DEFINE(LIBSOUP_HAVE_GSSAPI, 1, [Whether or not GSSAPI libs are available]) fi else - if test "$with_gssapi" == "yes"; then + if test "$with_gssapi" = "yes"; then AC_MSG_ERROR([GSSAPI support requested but failed to found krb5-config. Try to set KRB5_CONFIG.]) fi fi diff -Nru libsoup2.4-2.54.0.1/debian/changelog libsoup2.4-2.54.1/debian/changelog --- libsoup2.4-2.54.0.1/debian/changelog 2016-04-25 16:35:51.000000000 +0000 +++ libsoup2.4-2.54.1/debian/changelog 2016-04-27 12:25:25.000000000 +0000 @@ -1,3 +1,11 @@ +libsoup2.4 (2.54.1-1) unstable; urgency=medium + + * New upstream release. Really closes: #821274, the previous upload was + actually missing the patch. + * Bump Standards-Version to 3.9.8. + + -- Michael Biebl Wed, 27 Apr 2016 14:25:24 +0200 + libsoup2.4 (2.54.0.1-2) unstable; urgency=medium * Fix SoupAuthClass size to undo ABI break with 2.54.0. Patch cherry-picked diff -Nru libsoup2.4-2.54.0.1/debian/control libsoup2.4-2.54.1/debian/control --- libsoup2.4-2.54.0.1/debian/control 2016-04-25 16:36:13.000000000 +0000 +++ libsoup2.4-2.54.1/debian/control 2016-04-27 12:34:28.000000000 +0000 @@ -28,7 +28,7 @@ Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/libsoup2.4 Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/libsoup2.4 Homepage: https://wiki.gnome.org/Projects/libsoup -Standards-Version: 3.9.7 +Standards-Version: 3.9.8 Package: libsoup2.4-dev Architecture: any diff -Nru libsoup2.4-2.54.0.1/debian/control.in libsoup2.4-2.54.1/debian/control.in --- libsoup2.4-2.54.0.1/debian/control.in 2016-04-16 00:19:12.000000000 +0000 +++ libsoup2.4-2.54.1/debian/control.in 2016-04-27 12:24:35.000000000 +0000 @@ -24,7 +24,7 @@ Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/libsoup2.4 Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/libsoup2.4 Homepage: https://wiki.gnome.org/Projects/libsoup -Standards-Version: 3.9.7 +Standards-Version: 3.9.8 Package: libsoup2.4-dev Architecture: any diff -Nru libsoup2.4-2.54.0.1/docs/reference/html/libsoup-2.4-Version-Information.html libsoup2.4-2.54.1/docs/reference/html/libsoup-2.4-Version-Information.html --- libsoup2.4-2.54.0.1/docs/reference/html/libsoup-2.4-Version-Information.html 2016-03-23 12:17:34.000000000 +0000 +++ libsoup2.4-2.54.1/docs/reference/html/libsoup-2.4-Version-Information.html 2016-04-26 12:36:43.000000000 +0000 @@ -288,7 +288,7 @@

SOUP_MICRO_VERSION

-
#define SOUP_MICRO_VERSION (0)
+
#define SOUP_MICRO_VERSION (1)
 

Like soup_get_micro_version(), but from the headers used at application compile time, rather than from the library linked diff -Nru libsoup2.4-2.54.0.1/libsoup/soup-auth.h libsoup2.4-2.54.1/libsoup/soup-auth.h --- libsoup2.4-2.54.0.1/libsoup/soup-auth.h 2016-03-14 16:19:35.000000000 +0000 +++ libsoup2.4-2.54.1/libsoup/soup-auth.h 2016-04-25 15:17:57.000000000 +0000 @@ -51,7 +51,6 @@ gboolean (*can_authenticate) (SoupAuth *auth); /* Padding for future expansion */ - void (*_libsoup_reserved2) (void); void (*_libsoup_reserved3) (void); void (*_libsoup_reserved4) (void); } SoupAuthClass; diff -Nru libsoup2.4-2.54.0.1/libsoup/soup-auth-ntlm.c libsoup2.4-2.54.1/libsoup/soup-auth-ntlm.c --- libsoup2.4-2.54.0.1/libsoup/soup-auth-ntlm.c 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/libsoup/soup-auth-ntlm.c 2016-04-25 15:17:18.000000000 +0000 @@ -359,6 +359,7 @@ conn->state = SOUP_NTLM_SSO_FAILED; success = FALSE; } else if (!g_ascii_strcasecmp (response, "PW")) { + conn->state = SOUP_NTLM_SSO_FAILED; priv->sso_available = FALSE; g_free (response); } else { @@ -489,7 +490,7 @@ priv->sso_available = FALSE; } } else { - g_warning ("NTLM single-sign-on using %s failed", NTLM_AUTH); + g_debug ("NTLM single-sign-on using %s failed", NTLM_AUTH); } } /* If NTLM single-sign-on fails, go back to original @@ -525,7 +526,7 @@ #ifdef USE_NTLM_AUTH case SOUP_NTLM_SSO_FAILED: /* Restart request without SSO */ - g_warning ("NTLM single-sign-on by using %s failed", NTLM_AUTH); + g_debug ("NTLM single-sign-on by using %s failed", NTLM_AUTH); priv->sso_available = FALSE; header = soup_ntlm_request (); conn->state = SOUP_NTLM_SENT_REQUEST; diff -Nru libsoup2.4-2.54.0.1/libsoup/soup-server.c libsoup2.4-2.54.1/libsoup/soup-server.c --- libsoup2.4-2.54.0.1/libsoup/soup-server.c 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/libsoup/soup-server.c 2016-04-25 17:48:43.000000000 +0000 @@ -1730,15 +1730,13 @@ SOUP_SOCKET_IS_SERVER, &is_listening, NULL); if (!is_listening) { - if (!soup_socket_listen (listener)) { + if (!soup_socket_listen_full (listener, error)) { SoupAddress *saddr = soup_socket_get_local_address (listener); - g_set_error (error, - G_IO_ERROR, - G_IO_ERROR_FAILED, - _("Could not listen on address %s, port %d"), - soup_address_get_physical (saddr), - soup_address_get_port (saddr)); + g_prefix_error (error, + _("Could not listen on address %s, port %d: "), + soup_address_get_physical (saddr), + soup_address_get_port (saddr)); return FALSE; } } diff -Nru libsoup2.4-2.54.0.1/libsoup/soup-socket.c libsoup2.4-2.54.1/libsoup/soup-socket.c --- libsoup2.4-2.54.0.1/libsoup/soup-socket.c 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/libsoup/soup-socket.c 2016-04-25 16:48:23.000000000 +0000 @@ -1246,6 +1246,23 @@ **/ gboolean soup_socket_listen (SoupSocket *sock) +{ + return soup_socket_listen_full (sock, NULL); +} + +/** + * soup_socket_listen_full: + * @sock: a server #SoupSocket (which must not already be connected or listening) + * @error: error pointer + * + * Makes @sock start listening on its local address. When connections + * come in, @sock will emit #SoupSocket::new_connection. + * + * Return value: whether or not @sock is now listening. + **/ +gboolean +soup_socket_listen_full (SoupSocket *sock, + GError **error) { SoupSocketPrivate *priv; @@ -1268,7 +1285,7 @@ priv->gsock = g_socket_new (g_socket_address_get_family (addr), G_SOCKET_TYPE_STREAM, G_SOCKET_PROTOCOL_DEFAULT, - NULL); + error); if (!priv->gsock) goto cant_listen; finish_socket_setup (sock); @@ -1285,14 +1302,14 @@ #endif /* Bind */ - if (!g_socket_bind (priv->gsock, addr, TRUE, NULL)) + if (!g_socket_bind (priv->gsock, addr, TRUE, error)) goto cant_listen; /* Force local_addr to be re-resolved now */ g_object_unref (priv->local_addr); priv->local_addr = NULL; /* Listen */ - if (!g_socket_listen (priv->gsock, NULL)) + if (!g_socket_listen (priv->gsock, error)) goto cant_listen; finish_listener_setup (sock); diff -Nru libsoup2.4-2.54.0.1/libsoup/soup-socket-private.h libsoup2.4-2.54.1/libsoup/soup-socket-private.h --- libsoup2.4-2.54.0.1/libsoup/soup-socket-private.h 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/libsoup/soup-socket-private.h 2016-04-25 16:48:23.000000000 +0000 @@ -46,6 +46,10 @@ SoupURI *soup_socket_get_http_proxy_uri (SoupSocket *sock); +gboolean soup_socket_listen_full (SoupSocket *sock, + GError **error); + + typedef struct { GMainContext *async_context; diff -Nru libsoup2.4-2.54.0.1/NEWS libsoup2.4-2.54.1/NEWS --- libsoup2.4-2.54.0.1/NEWS 2016-03-23 12:13:52.000000000 +0000 +++ libsoup2.4-2.54.1/NEWS 2016-04-26 12:32:11.000000000 +0000 @@ -1,3 +1,21 @@ +Changes in libsoup from 2.54.0.1 to 2.54.1: + + * *** IMPORTANT *** + Fixed an ABI break in 2.54.0 caused by adding a member to + SoupAuthClass; 2.54.1 is ABI-compatible with 2.53.92 and + earlier, but NOT with the anomalous 2.54.0. If you built + packages against 2.54.0, you will need to rebuild them + against 2.54.1. + + * Fixed NTLM authentication when ntlm_auth from the latest + version of Samba is present. [#765106, Milan Crha] + + * Updates to MSVC build, including for GSS-API support + [Chun-wei Fan] + + * Updated translations: + Friulian + Changes in libsoup from 2.53.92 to 2.54.0.1: * (2.54.0.1 fixes a build problem with the 2.54.0 tarball, diff -Nru libsoup2.4-2.54.0.1/po/an.po libsoup2.4-2.54.1/po/an.po --- libsoup2.4-2.54.0.1/po/an.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/an.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "No se puede escuitar en l'adreza %s, puerto %d" +msgid "Could not listen on address %s, port %d: " +msgstr "No se puede escuitar en l'adreza %s, puerto %d: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/as.po libsoup2.4-2.54.1/po/as.po --- libsoup2.4-2.54.0.1/po/as.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/as.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "ঠিকনা %s, পৰ্ট %d ত শুনিব নোৱাৰি" +msgid "Could not listen on address %s, port %d: " +msgstr "ঠিকনা %s, পৰ্ট %d ত শুনিব নোৱাৰি: " #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/bg.po libsoup2.4-2.54.1/po/bg.po --- libsoup2.4-2.54.0.1/po/bg.po 2016-02-19 14:15:46.000000000 +0000 +++ libsoup2.4-2.54.1/po/bg.po 2016-04-25 17:48:49.000000000 +0000 @@ -80,8 +80,8 @@ #: ../libsoup/soup-server.c:1739 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Не може да се слуша на адрес „%s“, порт %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Не може да се слуша на адрес „%s“, порт %d: " #: ../libsoup/soup-session.c:4543 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/bn_IN.po libsoup2.4-2.54.1/po/bn_IN.po --- libsoup2.4-2.54.0.1/po/bn_IN.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/bn_IN.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "ঠিকানা %s, পোর্ট %d এ শোনা যায়নি" +msgid "Could not listen on address %s, port %d: " +msgstr "ঠিকানা %s, পোর্ট %d এ শোনা যায়নি: " #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/bs.po libsoup2.4-2.54.1/po/bs.po --- libsoup2.4-2.54.0.1/po/bs.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/bs.po 2016-04-25 17:48:49.000000000 +0000 @@ -77,8 +77,8 @@ #: ../libsoup/soup-server.c:1604 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Ne mogu slušati na adresi %s,%d port" +msgid "Could not listen on address %s, port %d: " +msgstr "Ne mogu slušati na adresi %s,%d port: " #: ../libsoup/soup-session.c:4485 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/ca.po libsoup2.4-2.54.1/po/ca.po --- libsoup2.4-2.54.0.1/po/ca.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/ca.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "No es pot escoltar a l'adreça %s, port %d" +msgid "Could not listen on address %s, port %d: " +msgstr "No es pot escoltar a l'adreça %s, port %d: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/ca@valencia.po libsoup2.4-2.54.1/po/ca@valencia.po --- libsoup2.4-2.54.0.1/po/ca@valencia.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/ca@valencia.po 2016-04-25 17:48:49.000000000 +0000 @@ -80,8 +80,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "No es pot escoltar a l'adreça %s, port %d" +msgid "Could not listen on address %s, port %d: " +msgstr "No es pot escoltar a l'adreça %s, port %d: " #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/cs.po libsoup2.4-2.54.1/po/cs.po --- libsoup2.4-2.54.0.1/po/cs.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/cs.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Nelze naslouchat na adrese %s, portu %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Nelze naslouchat na adrese %s, portu %d: " #: ../libsoup/soup-session.c:4554 #, c-format @@ -110,7 +110,7 @@ #: ../libsoup/soup-socket.c:166 msgid "Could not import existing socket: " -msgstr "Nelze naimportovat stávající soket:" +msgstr "Nelze naimportovat stávající soket: " #: ../libsoup/soup-socket.c:175 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/da.po libsoup2.4-2.54.1/po/da.po --- libsoup2.4-2.54.0.1/po/da.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/da.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Kunne ikke lytte på adresse %s, port %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Kunne ikke lytte på adresse %s, port %d: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/de.po libsoup2.4-2.54.1/po/de.po --- libsoup2.4-2.54.0.1/po/de.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/de.po 2016-04-25 17:48:49.000000000 +0000 @@ -85,8 +85,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Auf Adresse %s, Port %d kann nicht gehört werden" +msgid "Could not listen on address %s, port %d: " +msgstr "Auf Adresse %s, Port %d kann nicht gehört werden: " #: ../libsoup/soup-session.c:4587 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/es.po libsoup2.4-2.54.1/po/es.po --- libsoup2.4-2.54.0.1/po/es.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/es.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "No se puede escuchar en la dirección %s, puerto %d" +msgid "Could not listen on address %s, port %d: " +msgstr "No se puede escuchar en la dirección %s, puerto %d: " #: ../libsoup/soup-session.c:4554 #, c-format @@ -111,7 +111,7 @@ #: ../libsoup/soup-socket.c:166 msgid "Could not import existing socket: " -msgstr "No se pudo importar el socket existente:" +msgstr "No se pudo importar el socket existente: " #: ../libsoup/soup-socket.c:175 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/eu.po libsoup2.4-2.54.1/po/eu.po --- libsoup2.4-2.54.0.1/po/eu.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/eu.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Ezin izan da '%s:%d' helbidean entzun" +msgid "Could not listen on address %s, port %d: " +msgstr "Ezin izan da '%s:%d' helbidean entzun: " #: ../libsoup/soup-session.c:4554 #, c-format @@ -111,7 +111,7 @@ #: ../libsoup/soup-socket.c:166 msgid "Could not import existing socket: " -msgstr "Ezin izan da dagoen socket-a inportatu:" +msgstr "Ezin izan da dagoen socket-a inportatu: " #: ../libsoup/soup-socket.c:175 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/fr.po libsoup2.4-2.54.1/po/fr.po --- libsoup2.4-2.54.0.1/po/fr.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/fr.po 2016-04-25 17:48:49.000000000 +0000 @@ -84,8 +84,8 @@ #: ../libsoup/soup-server.c:1736 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Impossible d'écouter l'adresse %s sur le port %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Impossible d'écouter l'adresse %s sur le port %d: " #: ../libsoup/soup-session.c:4500 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/fur.po libsoup2.4-2.54.1/po/fur.po --- libsoup2.4-2.54.0.1/po/fur.po 2016-03-23 12:10:55.000000000 +0000 +++ libsoup2.4-2.54.1/po/fur.po 2016-04-25 17:48:49.000000000 +0000 @@ -8,8 +8,8 @@ "Project-Id-Version: libsoup gnome-3-6\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" "product=libsoup&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2015-03-01 15:38+0000\n" -"PO-Revision-Date: 2016-03-23 07:04+0100\n" +"POT-Creation-Date: 2016-04-08 01:00+0000\n" +"PO-Revision-Date: 2016-04-08 10:06+0200\n" "Last-Translator: Fabio Tomat \n" "Language-Team: Friulian \n" "Language: fur\n" @@ -21,7 +21,7 @@ #: ../libsoup/soup-body-input-stream.c:140 #: ../libsoup/soup-body-input-stream.c:171 #: ../libsoup/soup-body-input-stream.c:204 -#: ../libsoup/soup-message-io.c:228 +#: ../libsoup/soup-message-io.c:235 msgid "Connection terminated unexpectedly" msgstr "No si spietave il termin de conession" @@ -33,11 +33,11 @@ msgid "Cannot truncate SoupBodyInputStream" msgstr "No puès cjonçâ SoupBodyInputStream" -#: ../libsoup/soup-cache-input-stream.c:73 +#: ../libsoup/soup-cache-input-stream.c:74 msgid "Network stream unexpectedly closed" msgstr "Flus di rêt sierât a colp" -#: ../libsoup/soup-cache-input-stream.c:290 +#: ../libsoup/soup-cache-input-stream.c:291 msgid "Failed to completely cache the resource" msgstr "Salvament in memorie de risorse falît" @@ -54,13 +54,13 @@ msgid "Unrecognized HTTP response encoding" msgstr "Codifiche rispueste HTTP no cognossude" -#: ../libsoup/soup-message-io.c:385 ../libsoup/soup-message-io.c:1011 +#: ../libsoup/soup-message-io.c:392 ../libsoup/soup-message-io.c:1020 msgid "Operation would block" -msgstr "L'operazion a sarà blocade" +msgstr "L'operazion e sarà blocade" -#: ../libsoup/soup-message-io.c:963 ../libsoup/soup-message-io.c:1000 +#: ../libsoup/soup-message-io.c:972 ../libsoup/soup-message-io.c:1005 msgid "Operation was cancelled" -msgstr "L'operazion a je stade scancelade" +msgstr "L'operazion e je stade scancelade" #: ../libsoup/soup-message-server-io.c:64 msgid "Could not parse HTTP request" @@ -76,64 +76,64 @@ msgid "Invalid '%s' URI: %s" msgstr "URI '%s' no valit: %s" -#: ../libsoup/soup-server.c:1717 +#: ../libsoup/soup-server.c:1720 msgid "Can't create a TLS server without a TLS certificate" msgstr "Impussibil creâ un servidôr TLS cence un certificât TLS" -#: ../libsoup/soup-server.c:1736 +#: ../libsoup/soup-server.c:1739 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Impussibil scoltâ te direzion %s, puarte %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Impussibil scoltâ te direzion %s, puarte %d: " -#: ../libsoup/soup-session.c:4500 +#: ../libsoup/soup-session.c:4543 #, c-format msgid "Could not parse URI '%s'" msgstr "No puès analizâ l'URI '%s'" -#: ../libsoup/soup-session.c:4537 +#: ../libsoup/soup-session.c:4580 #, c-format msgid "Unsupported URI scheme '%s'" msgstr "Scheme URI '%s' no supuartât" -#: ../libsoup/soup-session.c:4559 +#: ../libsoup/soup-session.c:4602 #, c-format msgid "Not an HTTP URI" msgstr "No un URI HTTP" -#: ../libsoup/soup-session.c:4741 +#: ../libsoup/soup-session.c:4788 msgid "The server did not accept the WebSocket handshake." msgstr "Il servidôr nol acete il handshake WebSocket" -#: ../libsoup/soup-socket.c:150 +#: ../libsoup/soup-socket.c:148 msgid "Can't import non-socket as SoupSocket" msgstr "Impussibil impuartâ non-socket come SoupSocket" -#: ../libsoup/soup-socket.c:168 +#: ../libsoup/soup-socket.c:166 msgid "Could not import existing socket: " msgstr "Impussibil impuartâ socket esistent: " -#: ../libsoup/soup-socket.c:177 +#: ../libsoup/soup-socket.c:175 msgid "Can't import unconnected socket" msgstr "Impussibil impuartâ socket no conetût" -#: ../libsoup/soup-websocket.c:336 ../libsoup/soup-websocket.c:345 +#: ../libsoup/soup-websocket.c:338 ../libsoup/soup-websocket.c:347 msgid "WebSocket handshake expected" msgstr "Si spietave handshake WebSocket" -#: ../libsoup/soup-websocket.c:353 +#: ../libsoup/soup-websocket.c:355 msgid "Unsupported WebSocket version" msgstr "Version WebSocket no supuartade" -#: ../libsoup/soup-websocket.c:362 +#: ../libsoup/soup-websocket.c:364 msgid "Invalid WebSocket key" msgstr "Clâf WebSocket no valide" -#: ../libsoup/soup-websocket.c:372 +#: ../libsoup/soup-websocket.c:374 #, c-format msgid "Incorrect WebSocket \"%s\" header" msgstr "Intestazion WebSocket \"%s\" no valide" -#: ../libsoup/soup-websocket.c:381 +#: ../libsoup/soup-websocket.c:383 msgid "Unsupported WebSocket subprotocol" msgstr "Sot-protocol WebSocket no supuartât" @@ -164,11 +164,11 @@ #: ../libsoup/soup-tld.c:198 ../libsoup/soup-tld.c:220 msgid "Invalid hostname" -msgstr "Il non host a no'l è valit" +msgstr "Il non host nol è valit" #: ../libsoup/soup-tld.c:250 msgid "Hostname has no base domain" -msgstr "Il non host a no'l a un domini di base" +msgstr "Il non host nol à un domini di base" #: ../libsoup/soup-tld.c:304 msgid "Not enough domains" diff -Nru libsoup2.4-2.54.0.1/po/gl.po libsoup2.4-2.54.1/po/gl.po --- libsoup2.4-2.54.0.1/po/gl.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/gl.po 2016-04-25 17:48:49.000000000 +0000 @@ -81,8 +81,8 @@ #: ../libsoup/soup-server.c:1736 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Non é posíbel escoitar no enderezo %s, porto %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Non é posíbel escoitar no enderezo %s, porto %d: " #: ../libsoup/soup-session.c:4500 #, c-format @@ -109,7 +109,7 @@ #: ../libsoup/soup-socket.c:168 msgid "Could not import existing socket: " -msgstr "Non é posíbel importar un socket existente:" +msgstr "Non é posíbel importar un socket existente: " #: ../libsoup/soup-socket.c:177 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/gu.po libsoup2.4-2.54.1/po/gu.po --- libsoup2.4-2.54.0.1/po/gu.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/gu.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "સરનામાં %s પર સાંભળી શક્યા નહિં, પોર્ટ %d" +msgid "Could not listen on address %s, port %d: " +msgstr "સરનામાં %s પર સાંભળી શક્યા નહિં, પોર્ટ %d: " #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/he.po libsoup2.4-2.54.1/po/he.po --- libsoup2.4-2.54.0.1/po/he.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/he.po 2016-04-25 17:48:49.000000000 +0000 @@ -85,8 +85,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "לא ניתן להאזין לכתובת %s, פתחה %d" +msgid "Could not listen on address %s, port %d: " +msgstr "לא ניתן להאזין לכתובת %s, פתחה %d:" #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/hi.po libsoup2.4-2.54.1/po/hi.po --- libsoup2.4-2.54.0.1/po/hi.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/hi.po 2016-04-25 17:48:49.000000000 +0000 @@ -85,8 +85,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "पता %s, पोर्ट %d पर सुन नहीं सकता है" +msgid "Could not listen on address %s, port %d: " +msgstr "पता %s, पोर्ट %d पर सुन नहीं सकता है: " #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/hu.po libsoup2.4-2.54.1/po/hu.po --- libsoup2.4-2.54.0.1/po/hu.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/hu.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1736 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Nem sikerült figyelni a(z) %s címen a(z) %d. porton" +msgid "Could not listen on address %s, port %d: " +msgstr "Nem sikerült figyelni a(z) %s címen a(z) %d. porton: " #: ../libsoup/soup-session.c:4500 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/id.po libsoup2.4-2.54.1/po/id.po --- libsoup2.4-2.54.0.1/po/id.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/id.po 2016-04-25 17:48:49.000000000 +0000 @@ -84,8 +84,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Tak bisa mendengar pada alamat %s, port %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Tak bisa mendengar pada alamat %s, port %d: " #: ../libsoup/soup-session.c:4554 #, c-format @@ -112,7 +112,7 @@ #: ../libsoup/soup-socket.c:166 msgid "Could not import existing socket: " -msgstr "Tak dapat mengimpor soket yang telah ada:" +msgstr "Tak dapat mengimpor soket yang telah ada: " #: ../libsoup/soup-socket.c:175 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/it.po libsoup2.4-2.54.1/po/it.po --- libsoup2.4-2.54.0.1/po/it.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/it.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Impossibile restare in ascolto sull'indirizzo %s, porta %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Impossibile restare in ascolto sull'indirizzo %s, porta %d: " #: ../libsoup/soup-session.c:4554 #, c-format @@ -110,7 +110,7 @@ #: ../libsoup/soup-socket.c:166 msgid "Could not import existing socket: " -msgstr "Impossibile importare il socket esistente:" +msgstr "Impossibile importare il socket esistente: " #: ../libsoup/soup-socket.c:175 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/kn.po libsoup2.4-2.54.1/po/kn.po --- libsoup2.4-2.54.0.1/po/kn.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/kn.po 2016-04-25 17:48:49.000000000 +0000 @@ -81,8 +81,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "%s ವಿಳಾಸದಲ್ಲಿ, %d ಸಂಪರ್ಕಸ್ಥಾನದಲ್ಲಿ ಆಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" +msgid "Could not listen on address %s, port %d: " +msgstr "%s ವಿಳಾಸದಲ್ಲಿ, %d ಸಂಪರ್ಕಸ್ಥಾನದಲ್ಲಿ ಆಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ:" #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/ko.po libsoup2.4-2.54.1/po/ko.po --- libsoup2.4-2.54.0.1/po/ko.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/ko.po 2016-04-25 17:48:49.000000000 +0000 @@ -84,8 +84,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "주소 %s, 포트 %d번에 연결을 받을 수 없습니다" +msgid "Could not listen on address %s, port %d: " +msgstr "주소 %s, 포트 %d번에 연결을 받을 수 없습니다: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/lt.po libsoup2.4-2.54.1/po/lt.po --- libsoup2.4-2.54.0.1/po/lt.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/lt.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Nepavyksta klausytis adreso %s, prievadu %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Nepavyksta klausytis adreso %s, prievadu %d: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/lv.po libsoup2.4-2.54.1/po/lv.po --- libsoup2.4-2.54.0.1/po/lv.po 2016-02-19 14:15:46.000000000 +0000 +++ libsoup2.4-2.54.1/po/lv.po 2016-04-25 17:48:49.000000000 +0000 @@ -84,8 +84,8 @@ #: ../libsoup/soup-server.c:1739 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Nevarēja sākt klausīties adresi %s, portu %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Nevarēja sākt klausīties adresi %s, portu %d: " #: ../libsoup/soup-session.c:4543 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/mr.po libsoup2.4-2.54.1/po/mr.po --- libsoup2.4-2.54.0.1/po/mr.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/mr.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "पत्ता %s, पोर्ट %d वर ऐकणे अशक्य" +msgid "Could not listen on address %s, port %d: " +msgstr "पत्ता %s, पोर्ट %d वर ऐकणे अशक्य: " #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/nb.po libsoup2.4-2.54.1/po/nb.po --- libsoup2.4-2.54.0.1/po/nb.po 2016-02-19 14:15:46.000000000 +0000 +++ libsoup2.4-2.54.1/po/nb.po 2016-04-25 17:48:49.000000000 +0000 @@ -79,8 +79,8 @@ #: ../libsoup/soup-server.c:1739 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Kunne ikke lytte på adresse %s, port %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Kunne ikke lytte på adresse %s, port %d: " #: ../libsoup/soup-session.c:4543 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/oc.po libsoup2.4-2.54.1/po/oc.po --- libsoup2.4-2.54.0.1/po/oc.po 2016-03-13 15:24:36.000000000 +0000 +++ libsoup2.4-2.54.1/po/oc.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1739 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Impossible d'escotar l'adreça %s sul pòrt %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Impossible d'escotar l'adreça %s sul pòrt %d: " #: ../libsoup/soup-session.c:4543 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/or.po libsoup2.4-2.54.1/po/or.po --- libsoup2.4-2.54.0.1/po/or.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/or.po 2016-04-25 17:48:49.000000000 +0000 @@ -81,8 +81,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "ଠିକଣା %s, ପୋର୍ଟ %d ରେ ଶୁଣିପାରିବେ ନାହିଁ" +msgid "Could not listen on address %s, port %d: " +msgstr "ଠିକଣା %s, ପୋର୍ଟ %d ରେ ଶୁଣିପାରିବେ ନାହିଁ: " #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/pa.po libsoup2.4-2.54.1/po/pa.po --- libsoup2.4-2.54.0.1/po/pa.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/pa.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "ਸਿਰਨਾਵਾਂ %s, ਪੋਰਟ %d ਉੱਤੇ ਸੁਣਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ" +msgid "Could not listen on address %s, port %d: " +msgstr "ਸਿਰਨਾਵਾਂ %s, ਪੋਰਟ %d ਉੱਤੇ ਸੁਣਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ: " #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/pl.po libsoup2.4-2.54.1/po/pl.po --- libsoup2.4-2.54.0.1/po/pl.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/pl.po 2016-04-25 17:48:49.000000000 +0000 @@ -86,8 +86,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Nie można nasłuchiwać na adresie %s, porcie %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Nie można nasłuchiwać na adresie %s, porcie %d: " #: ../libsoup/soup-session.c:4587 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/pt_BR.po libsoup2.4-2.54.1/po/pt_BR.po --- libsoup2.4-2.54.0.1/po/pt_BR.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/pt_BR.po 2016-04-25 17:48:49.000000000 +0000 @@ -84,8 +84,8 @@ #: ../libsoup/soup-server.c:1736 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Não foi possível escutar o endereço %s, porta %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Não foi possível escutar o endereço %s, porta %d: " #: ../libsoup/soup-session.c:4500 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/pt.po libsoup2.4-2.54.1/po/pt.po --- libsoup2.4-2.54.0.1/po/pt.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/pt.po 2016-04-25 17:48:49.000000000 +0000 @@ -84,8 +84,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Impossível ouvir no endereço %s, porta %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Impossível ouvir no endereço %s, porta %d: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/ru.po libsoup2.4-2.54.1/po/ru.po --- libsoup2.4-2.54.0.1/po/ru.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/ru.po 2016-04-25 17:48:49.000000000 +0000 @@ -85,8 +85,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Не удалось начать прослушивание по адресу %s (порт — %d)" +msgid "Could not listen on address %s, port %d: " +msgstr "Не удалось начать прослушивание по адресу %s (порт — %d): " #: ../libsoup/soup-session.c:4554 #, c-format @@ -114,7 +114,7 @@ #: ../libsoup/soup-socket.c:166 msgid "Could not import existing socket: " -msgstr "Не удалось импортировать существующий сокет:" +msgstr "Не удалось импортировать существующий сокет: " #: ../libsoup/soup-socket.c:175 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/sk.po libsoup2.4-2.54.1/po/sk.po --- libsoup2.4-2.54.0.1/po/sk.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/sk.po 2016-04-25 17:48:49.000000000 +0000 @@ -88,8 +88,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Nepodarilo sa počúvať na adrese %s, porte %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Nepodarilo sa počúvať na adrese %s, porte %d: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/sl.po libsoup2.4-2.54.1/po/sl.po --- libsoup2.4-2.54.0.1/po/sl.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/sl.po 2016-04-25 17:48:49.000000000 +0000 @@ -85,8 +85,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Ni mogoče prisluhniti naslovu %s, vrata %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Ni mogoče prisluhniti naslovu %s, vrata %d: " #: ../libsoup/soup-session.c:4554 #, c-format @@ -113,7 +113,7 @@ #: ../libsoup/soup-socket.c:166 msgid "Could not import existing socket: " -msgstr "Ni mogoče uvoziti obstoječega vtiča:" +msgstr "Ni mogoče uvoziti obstoječega vtiča: " #: ../libsoup/soup-socket.c:175 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/sr@latin.po libsoup2.4-2.54.1/po/sr@latin.po --- libsoup2.4-2.54.0.1/po/sr@latin.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/sr@latin.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Ne mogu da osluškujem na adresi „%s“, priključnik %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Ne mogu da osluškujem na adresi „%s“, priključnik %d: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/sr.po libsoup2.4-2.54.1/po/sr.po --- libsoup2.4-2.54.0.1/po/sr.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/sr.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Не могу да ослушкујем на адреси „%s“, прикључник %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Не могу да ослушкујем на адреси „%s“, прикључник %d: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/sv.po libsoup2.4-2.54.1/po/sv.po --- libsoup2.4-2.54.0.1/po/sv.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/sv.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Kan inte lyssna på adress %s, port %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Kan inte lyssna på adress %s, port %d: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/te.po libsoup2.4-2.54.1/po/te.po --- libsoup2.4-2.54.0.1/po/te.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/te.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "చిరునామా %s పైన వినలేదు, పోర్ట్ %d" +msgid "Could not listen on address %s, port %d: " +msgstr "చిరునామా %s పైన వినలేదు, పోర్ట్ %d: " #: ../libsoup/soup-session.c:4466 #, c-format @@ -107,7 +107,7 @@ #: ../libsoup/soup-socket.c:160 msgid "Could not import existing socket: " -msgstr "ఉన్న సాకెట్‌ను దిగుమతిచేయలేదు:" +msgstr "ఉన్న సాకెట్‌ను దిగుమతిచేయలేదు: " #: ../libsoup/soup-socket.c:169 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/th.po libsoup2.4-2.54.1/po/th.po --- libsoup2.4-2.54.0.1/po/th.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/th.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "ไม่สามารถรอรับการเชื่อมต่อที่ที่อยู่ %s, พอร์ต %d ได้" +msgid "Could not listen on address %s, port %d: " +msgstr "ไม่สามารถรอรับการเชื่อมต่อที่ที่อยู่ %s, พอร์ต %d ได้: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/tr.po libsoup2.4-2.54.1/po/tr.po --- libsoup2.4-2.54.0.1/po/tr.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/tr.po 2016-04-25 17:48:49.000000000 +0000 @@ -87,8 +87,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "%s adresinin %d bağlantı noktası dinlenemedi" +msgid "Could not listen on address %s, port %d: " +msgstr "%s adresinin %d bağlantı noktası dinlenemedi: " #: ../libsoup/soup-session.c:4554 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/uk.po libsoup2.4-2.54.1/po/uk.po --- libsoup2.4-2.54.0.1/po/uk.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/uk.po 2016-04-25 17:48:49.000000000 +0000 @@ -83,8 +83,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Не вдалося почати прослуховування за адресою %s (порт — %d)" +msgid "Could not listen on address %s, port %d: " +msgstr "Не вдалося почати прослуховування за адресою %s (порт — %d): " #: ../libsoup/soup-session.c:4424 #, c-format @@ -107,7 +107,7 @@ #: ../libsoup/soup-socket.c:159 msgid "Could not import existing socket: " -msgstr "Не вдалося імпортувати наявний сокет:" +msgstr "Не вдалося імпортувати наявний сокет: " #: ../libsoup/soup-socket.c:168 msgid "Can't import unconnected socket" diff -Nru libsoup2.4-2.54.0.1/po/vi.po libsoup2.4-2.54.1/po/vi.po --- libsoup2.4-2.54.0.1/po/vi.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/vi.po 2016-04-25 17:48:49.000000000 +0000 @@ -84,8 +84,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "Không thể lắng nghe trên địa chỉ %s, cổng %d" +msgid "Could not listen on address %s, port %d: " +msgstr "Không thể lắng nghe trên địa chỉ %s, cổng %d: " #: ../libsoup/soup-session.c:4543 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/zh_CN.po libsoup2.4-2.54.1/po/zh_CN.po --- libsoup2.4-2.54.0.1/po/zh_CN.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/zh_CN.po 2016-04-25 17:48:49.000000000 +0000 @@ -85,8 +85,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "不能监听 %s 地址的 %d 端口" +msgid "Could not listen on address %s, port %d: " +msgstr "不能监听 %s 地址的 %d 端口:" #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/zh_HK.po libsoup2.4-2.54.1/po/zh_HK.po --- libsoup2.4-2.54.0.1/po/zh_HK.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/zh_HK.po 2016-04-25 17:48:49.000000000 +0000 @@ -81,8 +81,8 @@ #: ../libsoup/soup-server.c:1547 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "無法聽取位址 %s,連接埠 %d" +msgid "Could not listen on address %s, port %d: " +msgstr "無法聽取位址 %s,連接埠 %d:" #: ../libsoup/soup-session.c:4466 #, c-format diff -Nru libsoup2.4-2.54.0.1/po/zh_TW.po libsoup2.4-2.54.1/po/zh_TW.po --- libsoup2.4-2.54.0.1/po/zh_TW.po 2016-02-05 15:05:33.000000000 +0000 +++ libsoup2.4-2.54.1/po/zh_TW.po 2016-04-25 17:48:49.000000000 +0000 @@ -82,8 +82,8 @@ #: ../libsoup/soup-server.c:1730 #, c-format -msgid "Could not listen on address %s, port %d" -msgstr "無法聽取位址 %s,連接埠 %d" +msgid "Could not listen on address %s, port %d: " +msgstr "無法聽取位址 %s,連接埠 %d:" #: ../libsoup/soup-session.c:4554 #, c-format