| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
| |
| |
| |
| |
| | |
* Travis: Add workaround for https://github.com/travis-ci/travis-ci/issues/6307
* Travis on mac fails, without source change... yay
|
|/
|
|
|
|
|
| |
since the image updates of Sept 2017, python was no longer found
in $PATH; the issue hits a lot of travis consumers, but seems
not much changes... so copy workaround from other projects
https://github.com/travis-ci/travis-ci/issues/8363
|
|\
| |
| | |
Add public px_proxy_factory_free_proxies function
|
| | |
|
|/
|
|
| |
Fixes issue #43.
|
|\
| |
| |
| | |
Add symbol versions - be ready to introduce new APIs as needed
|
|/
|
|
|
| |
APPLE uses a linker derived from llvm, which does not support --version-script,
so ignore it there (sorry guys).
|
|\
| |
| | |
get-pac-test: Fix typo
|
|/
|
|
| |
Closes: #64
|
|\
| |
| | |
Use closesocket() instead of close() on Windows
|
|/ |
|
| |
|
|\
| |
| | |
Update build to mozjs38
|
| |\ |
|
| | |\
| |_|/
|/| | |
|
| |\ \
| |/ /
|/| /
| |/ |
|
|\ \
| | |
| | | |
Set lasturl to NULL after free/delete
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
It avoids the lasturl to be freed a 2nd time when the rewind() method is
called.
Closes: #59
|
|\ \ \
| |/ /
|/| | |
Use StateChanged signal instead of StateChange
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
StateChange signal has been deprecated since NM 0.7 and has been
completely removed in 0.9, see:
https://developer.gnome.org/NetworkManager/0.9/ref-migrating.html
Closes: #58
|
|\ \
| | |
| | | |
fix spelling mistake
|
|/ / |
|
|\ \
| | |
| | | |
Install libs/cmake/pkgconfig thingy into right place for MinGW
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
MinGW folder structure is closer to Linux.
This allow use other MinGW package to utilize CMake or pkgconfig
to setup the project.
Signed-off-by: Ľubomír Carik <Lubomir.Carik@gmail.com>
|
|\ \
| | |
| | | |
Use different name when checking for 2nd set NetworkManager packages
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Seems different to Autoconf, cmake does keep some cache around and does
not transparently reuse the name fully to make a complete test. This for
one resulted in old versions of NetworkManager being queried, yet the final
build was disabled. If cmake was ran a 2nd time the cache was refreshed and
the NetworkManager module being built.
By using a 2nd name we aboid the internal confusion for cmake.
Fixes issue #53
|
|\ \
| | |
| | | |
Prepare for 0.4.14
|
|/ / |
|
|\ \
| | |
| | | |
Travis: osx tests are mandatory from this point forward
|
|/ / |
|
|\ \
| | |
| | | |
Fix intermittent test failures in get-pac-test
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Rather than checking for EBADF when the socket is closed due to an
overly-large request, check that the sent size differs from the
received. Use a large buffer to ensure that the number of bytes sent are
greater than the kernel TCP receive buffer size, as otherwise the send()
call succeeds even though the bytes were never retrieved from the
socket. Pass the MSG_NOSIGNAL flag (or the SO_NOSIGPIPE socket option)
so that SIGPIPE is not generated when the socket is closed once the
content length has been read.
Close #47
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Do not call close() on the return value from send(), which is a number
of bytes.
Fixes #47
|
|\ \ \
| |/ /
|/| | |
Fixes for pxgsettings
|
| | |
| | |
| | |
| | |
| | | |
g_settings_list_keys() is deprecated, and g_settings_schema_list_keys()
should be used instead as of GLib 2.46.
|
| | |
| | |
| | |
| | |
| | | |
The key names returned by g_settings_list_keys() are annotated as being
transfer full, so must be freed after use.
|
|/ /
| |
| |
| | |
g_type_init() was deprecated in GLib 2.36.
|
|\ \
| | |
| | | |
Set CMP0054 CMake policy to NEW.
|
|/ /
| |
| |
| |
| |
| |
| | |
CMake 3.7 exports a "t" variable for all projects and because of that
the elseif statement in cmake/CMakeCSharpInformation.cmake:311 works
incorrectly if CMP0054 is not set to NEW (as "t" is expanded to the
variable value).
|
|\ \
| | |
| | | |
FindMono: fall back to mcs when gmcs cannot be found
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| | |
With mono 4.6, gmcs is no longer an upstream shipped wrapper.
Just fallback to 'mcs' if gmcs cannot be found. Distros still shipping
gmcs are assumed to know why they do so - in this case we favor their
local scripts.
Fixes issue #37.
|
|\ \
| | |
| | | |
Use the query string (parameters) when requesting PAC files
|
| | | |
|
|/ / |
|
|\ \
| | |
| | |
| | |
| | | |
Handle PAC files without specified HTTP content length
Thanks a lot
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Add support to build Python2 and Python3 bindings in parallel
|
|/ /
| |
| |
| | |
Fixes issue #22
|
|\ \
| | |
| | | |
GNOME3: Wait for pxgsettings to vanish while destroying the plugin
|