Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • janitor-team/proposed/torsocks
  • pkg-privacy-team/torsocks
2 results
Show changes
Commits on Source (4)
......@@ -61,3 +61,5 @@ tests/*.log
tests/*.trs
tests/unit/*.log
tests/unit/*.trs
.pc
torsocks (2.4.0-2) UNRELEASED; urgency=medium
* Remove lunar@debian.org from Uploaders (at their request)
* Add .pc (quilt) to .gitignore
* Fix FTBFS: C99 compatibility (upstream patch) (Closes: #1066313)
* d/control: declare compliance with policy 4.7.0
-- Clément Hermann <nodens@debian.org> Thu, 18 Apr 2024 00:00:02 +0200
torsocks (2.4.0-1) unstable; urgency=medium
* Update d/watch to get upstream releases from tor's gitlab
......
......@@ -5,9 +5,9 @@ Section: net
Priority: optional
Build-Depends: debhelper-compat (= 13),
dh-autoreconf,
dpkg-dev (>= 1.16.1.1~),
dpkg-dev,
bash-completion
Standards-Version: 4.0.0
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/pkg-privacy-team/torsocks
Vcs-Git: https://salsa.debian.org/pkg-privacy-team/torsocks.git
Homepage: https://gitweb.torproject.org/torsocks.git
......
Description: Fix C99 compatibility
Author: Florian Weimer <fw@deneb.enyo.de>
Origin: upstream, https://gitlab.torproject.org/tpo/core/torsocks/-/commit/969d782ad3b560448325ff6e9aa29801d6276a3e
Bug: https://gitlab.torproject.org/tpo/core/torsocks/-/issues/40014
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/common/config-file.h
+++ b/src/common/config-file.h
@@ -109,6 +109,7 @@
int conf_file_set_allow_outbound_localhost(const char *val, struct
configuration *config);
int conf_file_set_isolate_pid(const char *val, struct configuration *config);
+int conf_file_set_enable_ipv6(const char *val, struct configuration *config);
int conf_apply_socks_auth(struct configuration *config);
exclude_test_requiring_network.patch
fix_compatibility_with_C99.patch